I created an HTML page that is my main page. It has now been posted to the web and many clients go to the URL.
I would like to make an ASP page which is a duplicate, and have the original HTML page as a redirect page to it preventing a broken link.
My HTML page will display something to the effect "This page is redirected to ..... whatever".
How using HTML do I redirect my home page to my new ASP page without client intervention?
Thanks
Aronya1
03-21-2004, 09:50 PM
What's the title of the HTML page? Index.htm? Home.htm? If the .asp page will have the same name - index.asp, you shouldn't have to worry about redirecting. As long as your server is set up properly, just delete the .htm page. Check with your host to see if someone typing the full path, re: www.mysite.com/index.htm, will get a 404 error, or if the server will redirect automatically to the new .asp page.
edit
Somebody here may be able to answer that last question for you. Peo? Pyro?
Daniel T
03-21-2004, 11:20 PM
All you have to do is change your original page(the one that you want to be redirected to the new one), and make it to look like what you want it to show while it's redirecting. Then, put the following code somewhere between <head> and </head>:
<meta http-equiv="refresh" content="5;URL=pagename.asp">
Change the '5' to the number of seconds you want it to wait before redirecting. Change 'pagename.asp' to the location of the page you want it to redirect to.
-Dan
PeOfEo
03-21-2004, 11:23 PM
*note: on the page with that meta tag on it please put a link to the after page because not all browsers support the meta refresh
neenach2002
03-21-2004, 11:43 PM
Dammit...PeOfEo beat me to it...;)
hammerslane
03-22-2004, 08:26 AM
Originally posted by PeOfEo
*note: on the page with that meta tag on it please put a link to the after page because not all browsers support the meta refresh which browsers?
neenach2002
03-22-2004, 09:16 AM
I'm not sure....but I'm thinking something along the lines of Gecko based browsers (Netscape, Mozilla, Firefox) and possibly Opera?;)
EDIT: And also, I've successfully moved over to Netscape...:D
hammerslane
03-22-2004, 09:17 AM
works fine in all the mozilla browsers, and i tried it in netscape once, and it worked
neenach2002
03-22-2004, 09:39 AM
Then who knows?....Maybe my theory about all the good things that occur in browsers is wrong?...;)
My Theory:
The crappiest browser (IE) is the easiest to use.:rolleyes: Of course, with ease of use comes crappiness!;) :D
Oh and...
If something EVER works the first time....stop using IE!...Hey...those are sig worthy:D ;) ;) ;)
Well, at least I know that there is SOMETHING that IE does right!;)
EDIT: Alas, I just noticed the auto-redirect at this site when you post...and I'm in Netscape...;)
ray326
03-22-2004, 10:04 AM
All the modern browsers support it but there is some possibility that someone is paranoid and has discovered how to disable it in their browser.
Fletch9
03-22-2004, 10:54 AM
Supreme Master:
My page name is neither of these. In fact my free/host server specified I should name my first home page default.index,etc but I named it <name>.html which gave me no problems when I access.
Thanks for the tip.
I'm doing all this because I want to modify my original HTML to include a hit count, so I needed an asp page to do it.
I can use CGI they tell me, but I'll try ASP since I was brought up with VB and Delphi even tho that restricts me to platform.
Bad planning, Ill know better next time.
PeOfEo
03-22-2004, 05:46 PM
Browsers that do not support is include ie4 ns4 and other older browsers. You can do includes with ASP ASP.NET CGI JSP PHP CFML SSI and others. I suggest asp.net as always.
Daniel T
03-22-2004, 05:50 PM
Originally posted by PeOfEo
You can do includes with ASP ASP.NET CGI JSP PHP CFML SSI and others. I suggest asp.net as always.
Yes. you would, wouldn't you Peo:p Here's the PHP(superior) way:
<?php include("file.htm"); ?>
-Dan
PeOfEo
03-22-2004, 05:52 PM
here is the incredibly awesome asp, asp.net, and ssi way:
<!-- #Include virtual="file.html" -->
Daniel T
03-22-2004, 05:57 PM
Hmmm... Let's see which is easier:<?php include("file.htm"); ?>The PHP way takes a total of 30 keypresses. Now, the ASP/ASP.net/SSI way:<!-- #Include virtual="file.htm" -->The ASP/ASP.net/SSI way takes a total of 37 key presses. Now, the math:
30 < 37
Therefor, it is easier to use PHP includes;)
-Dan
PeOfEo
03-22-2004, 05:58 PM
<!-- #Include="file.htm" --> will also work, which is only 28. But this is only going to work in the root dir.
Daniel T
03-22-2004, 06:00 PM
Originally posted by PeOfEo
<!-- #Include="file.htm" --> will also work, which is only 28. But this is only going to work in the root dir.
Yeah, so you might aswell push the extra 2 keys it takes for PHP and be able to use other DIR's aswell.
-Dan
PeOfEo
03-22-2004, 06:08 PM
yet php does not have any language flexability.
Daniel T
03-22-2004, 06:11 PM
Yes, but if your server supports PHP, you might aswell take advantage of the 7-letter difference;)
-Dan
PeOfEo
03-22-2004, 06:15 PM
Originally posted by DanieLTomaS
Yes, but if your server supports PHP, you might aswell take advantage of the 7-letter difference;)
-Dan and leave yourself no language flexability for future applications. You would have to change it to an asp/asp.net/ssi include and change the format to do this!
Daniel T
03-22-2004, 06:16 PM
Ok, I give up, you win:rolleyes: But I'm stickin' with PHP!
-Dan
PeOfEo
03-22-2004, 06:21 PM
Originally posted by DanieLTomaS
Ok, I give up, you win
-Dan Thats RIGHT, Thats what I thought! :D
Daniel T
03-22-2004, 06:23 PM
Originally posted by PeOfEo
Thats RIGHT, Thats what I thought! :D
Ok, you don't gotta rub it in:D
-Dan
PeOfEo
03-22-2004, 06:24 PM
Another victory for Microsoft. Today http://forums.webdeveloper.com/showthread.php?s=&threadid=30793 Tomorrow the world!
Daniel T
03-22-2004, 06:30 PM
Originally posted by PeOfEo
Another victory for Microsoft.
Gee, how sad:( Microsoft is so desperate, it gets its kicks off of making 13-year-olds surrender to it. Let me tell you, Peo, dig yourself out of that dark watery grave that is Microsoft, and join the good side. Dig PEO, DIG!! before you're too far in!!
Just kiddin' man!;)
-Dan
PeOfEo
03-22-2004, 08:35 PM
Microsoft can beat up small kids and take their lunch money if they want to, thats why I allign myself with them, when microsoft takes over the world I want to be on their side (vaguely reminesant of some ideas towards nazi Germany during WWII)
neenach2002
03-22-2004, 08:40 PM
Microsoft really needs to clean up their browser though. They REALLY need to clean it up...I am having hell fixing my website to work with the rest of the browsers because MICROSOFT decided to f*** up their browser and make it so that it doesn't display how the coding tells it to...It needs better CSS support...since 90% of the community uses it...And it needs tabbed browsing, and maybe even a built in mail program...Once Microsoft does those things, I will go back to using it at home...(I will have to stick through any computer that does have IE):D
Aronya1
03-22-2004, 09:35 PM
Originally posted by neenach2002
...since 90% of the community uses it...
Ahh, but therein lies the rub. How do you convince the town bully to change his ways? Remember the Golden Rule:
He who has the gold makes the rules...
IncaWarrior
03-22-2004, 09:38 PM
well you could hire some of those terrorists
Aronya1
03-22-2004, 09:41 PM
Didn't somebody already do that? I seem to remember a pie in the face...
neenach2002
03-22-2004, 09:43 PM
I'd much rather stick with IE than hire terrorists to make Microsoft fix it!;)
Ah yes, the good 'ol Bill Gates pie in the face game!!!
pyro
03-22-2004, 09:49 PM
This will work on most servers:
<? include "file.htm"; ?>25 keypresses
Or this, on all:
<?PHP include "file.htm"; ?>28 keypresses
No, sorry. You haven't won, Peo. Not while Ryan's in the house! Better luck next time. :p
Originally posted by PeOfeO
yet php does not have any language flexability.What it does have is even better: Platform flexability.
steelersfan88
03-22-2004, 09:52 PM
I'm sticking with Peo, maybe peo didn't beat you yet ryan, but when peo takes over the world, it will be everyone against you, but you have to wait til tomorrow ;)
Just so we all get this straight, i'm a tad older than 13, but i still was enslaved by microsoft, haha
neenach2002
03-22-2004, 10:16 PM
What you all need:
A lesson in spelling...:D...
Your spelling: Flexability
Correct spelling: Flexibility
Daniel T
03-22-2004, 10:32 PM
Originally posted by pyro
<?PHP include "file.htm"; ?>28 keypresses
No, sorry. You haven't won, Peo. Not while Ryan's in the house! Better luck next time. :p
GO RYAN!!!:p
-Dan
PeOfEo
03-22-2004, 10:42 PM
Originally posted by pyro
This will work on most servers:
<? include "file.htm"; ?>25 keypresses
Or this, on all:
<?PHP include "file.htm"; ?>28 keypresses
No, sorry. You haven't won, Peo. Not while Ryan's in the house! Better luck next time. :p
What it does have is even better: Platform flexability. oh yea well... asp.net has lots of other cool stuff.... like its own controls (asp.net elements) that can mean easier codeing for event drvien aps, you can also use the html element and give it the attributes of the asp.net element! (if you have ever used vb then think of it as putting hte button on the screen then writing code for it in your code section) + works excelent with xml web services / soap, and if you want to integrate an rss feed you can do so with only a few lines of code. It makes a lot of stuff handy, SO THERE.
Daniel T
03-22-2004, 10:46 PM
Originally posted by PeOfEo
oh yea well... asp.net has lots of other cool stuff.... like custumb controls (asp.net elements) that can mean easier codeing for event drvien aps! + works excelent with xml web services / soap, and if you want to integrate an rss feed you can do so with only a few lines of code. It makes a lot of stuff handy, SO THERE.
Tsk Tsk... Oh, Peo:( Changing the subject... The first sign of defeat and denial... Face it, Ryan's just TOO good!;)
-Dan
neenach2002
03-22-2004, 10:59 PM
Awww....the poor Peo baby lost....;)
steelersfan88
03-22-2004, 11:06 PM
ok, if you have to attempt to win by saying your spelling is better than that of another, you are also changing the subject. please note your last reply for what this is a sign of.
While some other mods (not khalid, in case ur wondering, due to recent controversies) may be bitter enemies, i will continue to support peo.
steelersfan88
03-22-2004, 11:08 PM
Originally posted by neenach2002
Awww....the poor Peo baby lost....if thats what it takes to win, you've all lost a long time ago.
note my previous post :D
neenach2002
03-22-2004, 11:09 PM
I'm not trying to win....I was merely pointing out that it was spelled incorrectly...;)
Daniel T
03-22-2004, 11:09 PM
Originally posted by steelersfan88
While some other mods (not khalid, in case ur wondering, due to recent controversies) may be bitter enemies, i will continue to support peo.
Hey, I'm not "supporting" anyone. Peo is a great mod, and so is Ryan. By the way, steelersfan88, I have a major problem with your avatar!;)
-Dan
steelersfan88
03-22-2004, 11:09 PM
and for which point does it make?
steelersfan88
03-22-2004, 11:10 PM
glad to here that Dan, that's why i have it :) :) :) , because I am not sitting down as others transfuse to the dark side
Aronya1
03-22-2004, 11:11 PM
Originally posted by neenach2002
What you all need:
A lesson in spelling...:D...
Your spelling: Flexability
Correct spelling: Flexibility
Man! Did you ever score points in my book. I don't understand how people can code so well when they can't tell the difference between "your" and "you're".
steelersfan88
03-22-2004, 11:12 PM
Originally posted by Aronya1
I don't understand how people can code so well when they can't tell the difference between "your" and "you're".thanks for implying that i can code well, i'll take that as a compliment :)
Aronya1
03-22-2004, 11:13 PM
I said "people." ;)
steelersfan88
03-22-2004, 11:13 PM
and did you mean people with the your you're or did you, by any chance, mean one soecific person?
neenach2002
03-22-2004, 11:15 PM
Originally posted by steelersfan88
ok, if you have to attempt to win by saying your spelling is better than that of another, you are also changing the subject. please note your last reply for what this is a sign of.
I wasn't making a point, I was pointing it out;)
Originally posted by Aronya1
Man! Did you ever score points in my book. I don't understand how people can code so well when they can't tell the difference between "your" and "you're".
It's....umm....easy?...For me that is...I guess that makes me a GREAT coder?...Anyways, thanks for noticing...I just GET it....I dunno...*shrugs*;)
PeOfEo
03-22-2004, 11:16 PM
when did the html forum turn into the spelling forum? Spelling is for the weak! Neenach, when they add spelling to the ecommerce section, I nominate you to me the mod! :p steelersfan88 I also have a problem with your avatar, it is wrong on so many levels. Mozilla should not be associated with notepad or ie... it would belittle the name of mozilla.
steelersfan88
03-22-2004, 11:17 PM
i'll ask again, what point were you trying to make, was it at all necessary to point out? as was with it between fred and i ... probbaly not, unless you can defend it
steelersfan88
03-22-2004, 11:18 PM
great idea peo, i think we need lessons since evryone is now criticizing our spelling. i elect fred, neenach, or aronya, since they all seem to care ever so much!
the otepad picture is not for ie or mozilla, i made it for fred when i was critizized by him, again, for using Notepad as my coding program. The rest supports my view of IE over Mozilla.
Aronya1
03-22-2004, 11:19 PM
The 'points' post was just a "Thank you" to neenach2002 for saying what I have been thinking for a long while.
My last was a simple ribbing, since you decided that I was giving you a compliment. It wasn't meant for you to get your panties in a bunch (another joke, relax). However, your last post will put you in the running...
edit
Since the thread is moving faster than I am, this is the one I meant: "and did you mean people with the your you're or did you, by any chance, mean one soecific person?"
neenach2002
03-22-2004, 11:20 PM
Originally posted by steelersfan88
thanks for implying that i can code well, i'll take that as a compliment :)
He was quoting ME moron!:rolleyes:
steelersfan88
03-22-2004, 11:21 PM
did you spell your you're wrong? you are not going to the spelling forum for lessons like peo and me, you are going to be the principal (mod)
don't call me a moron, i am ten times smarter than you on any level.
PeOfEo
03-22-2004, 11:21 PM
Originally posted by steelersfan88
the otepad picture is not for ie or mozilla, i made it for fred when i was critizized by him, again, for using Notepad as my coding program. The rest supports my view of IE over Mozilla. GASP :eek:
PeOfEo
03-22-2004, 11:22 PM
Originally posted by steelersfan88
don't call me a moron, i am ten times smarter than you on any level. well hes got us on spelling
Aronya1
03-22-2004, 11:23 PM
LOL! That one works on at least 2 levels I can think of.
edit
Again, too fast. See: GASP
steelersfan88
03-22-2004, 11:26 PM
whats the gasp for? (yes it is true, i was criticized for using Notepad by Fred, it is not meant for coding and shouldn't be used:Originally posted by fredmv
That's insufficent. Notepad may seem cool at first, but it's simply not meant for creating sites or programs. I fully agree that text editors are best, however, not Notepad. Hell, I could write a better text editor.). peo, are you tryin to make us look bad? just kidding, that doesn't, try a different area (except for all math, physics, history, geography, lol) .
Aronya1
03-22-2004, 11:30 PM
Originally posted by PeOfEo
well hes got us on spelling
Hey guys. Serious question.
I have to assume that if you are web developers, you are at least planning to make money at it. If that assumption is correct, what kind of impression do you think people have when they read something that has poor grammar, poor spelling, improper punctuation, improper word usage, etc? I'm seeing it more and more in advertising of all kinds. Guess what I do when I see it? I write off that company as idiots. If they can't get it right on their own ad, how can I depend on them to get it right when it comes to my purchase, whatever it is?
steelersfan88
03-22-2004, 11:32 PM
don't make assumptions here, we are tying to be efficient, not preoficient, nor profitable, no reason for correct grammer/language.
neenach2002
03-22-2004, 11:34 PM
Originally posted by steelersfan88
i'll ask again, what point were you trying to make, was it at all necessary to point out? as was with it between fred and i ... probbaly not, unless you can defend it
Again, I wasn't trying to 'Make a point,"...I was trying to point out the fact that people are mispelling words and attempting to teach the people here how to code pages, but don't know how to spell...If you're gonna teach, KNOW HOW TO!;)
Aronya1
03-22-2004, 11:35 PM
Originally posted by steelersfan88
don't make assumptions here, we are tying to be efficient, not preoficient, nor profitable, no reason for correct grammer/language.
What is "preoficient"? If I have to spend as much time translating what somebody types as reading it, that's not efficient.
Grammar
You missed the whole point of my question.
Peo, any comments?
steelersfan88
03-22-2004, 11:36 PM
It's not the ignorance of knowing how to, but the ignorance of doing so. I don't think point out misspelling is going to lead other's to not use scripts that one develops.
steelersfan88
03-22-2004, 11:39 PM
i can read it fine, spelled right or wrong. its effecient to type quicker, if one cannot understand misspelled words, that cannot be dealt with.
To your ?, i don't think we will try to be as effiecient in a business; business = profitable, proficient, efficient (not just one)
online forum = efficient, no money, no need for proficiency in grammar, etc.
steelersfan88
03-22-2004, 11:40 PM
I understood that sentence just fine, this is not a business world; go to the e-commerce section; commerce==money==business!=HTML
there is a difference! (out for the night, 11:40 on the east coast!)
neenach2002
03-22-2004, 11:41 PM
Originally posted by steelersfan88
It's not the ignorance of knowing how to, but the ignorance of doing so. I don't think point out misspelling is going to lead other's to not use scripts that one develops.
others...not other's
I deleted and re-made my post, so he's responding to the following...
But it could, can, and WILL...:D...Grammar and spelling are very important if you want to appear professional in the business world...
Yu cant jsut go speel sentences withot propr speling!...;)
Aronya1
03-22-2004, 11:44 PM
I deleted my entire last post, because it was a response to his. :rolleyes: At some point, it just isn't worth the effort. Maybe when he gets older. He still thinks tax money belongs to the government.
Hey Peo! Where'd you go?
neenach2002
03-22-2004, 11:46 PM
Originally posted by Aronya1
I deleted my entire last post, because it was a response to his. :rolleyes: At some point, it just isn't worth the effort. Maybe when he gets older. He still thinks tax money belongs to the government.
Hey Peo! Where'd you go?
*Is very, very confused*:confused:
Aronya1
03-23-2004, 12:01 AM
I'm glad you pointed out the spelling thing. It's interesting to me how people can totally miss the difference between how others respond to some of the people who post here. How many disrespectful and rude comments have you seen in response to a post from Pyro? Or Vladdy? There are a handful of others who take the time to make themselves understandable on the page. Then take a look at how people respond to those who slap a post together without bothering to proofread it, even to see if it makes sense...
edit
OK, so I just read back thru my post. Here's an additional thought. Take a look at the difference in tone of the posters; those who take the time vs those who don't care. Who do you want to talk to? Who would you trust? Who would you give business to?
blah blah... end of rant
neenach2002
03-23-2004, 12:06 AM
For me, I don't have to take the time...usually....usually it just comes naturally!...Good thing I'm professional now, when I don't have to be, instead of having to learn it in a hurry...;)
Aronya1
03-23-2004, 12:16 AM
Same here. My problem is my fingers don't want to follow the lead of my brain. I can hit the Backspace key in my sleep!:D
neenach2002
03-23-2004, 12:22 AM
I will admit that I am human...and that I do make mistakes....since I type so fast, I have to go back and make an edit...;)
Aronya1
03-23-2004, 12:37 AM
I dun ofr tunite. Gonna go wach Frazier, or sumthin lyke that.
neenach2002
03-23-2004, 12:50 AM
Allritey than....hop u haf fune wachink whatefer u r goink too wach...and this is fun...talking like this....just when it's in a professional situation I gotta be...professional;)
steelersfan88
03-23-2004, 06:38 AM
Originally posted hy aronya1
He still thinks tax money belongs to the government.That's because tax dollars are (contributions to) government money.
I don't think the way we spell words has much of an impact on our mood here, as I'm sure you can tell our moods by the way we type. No-one will care if i don't capitalize i in my posts, there are many of the theforums that no Egnlish very poorly, and I respect that and while sentences may appear like, "nede i jabascirpt tou du wb site," I don't have a problem reading it.
I will admit that very few do come from ryan. disrespectful comments that is, but from vladdy, those numbers are quite large!
Paul Jr
03-23-2004, 10:45 AM
I think it's just common courtesy and common sense to proof-read your posts before you hit the "Submit" button. It's not that hard; and honestly, it's not that hard to just type out a post without horrible grammar and spelling.
I must disagree with you about the disrespectful comments coming from Vladdy, Steeler. His comments may be a bit harsh, but he gives 'em the straight-up truth. There isn't anything false in what he says.
Aronya1
03-23-2004, 01:12 PM
Tax dollars are taken forcibly from the public.
When you get old enough to start paying taxes, just try to not pay. See where you end up. Push things far enough, and the IRS will take everything you own. They don't have to check with anybody. They are not accountable to anybody. They are autonomous. They can wrongly seize your property, put leins on your income, etc., and do not have to pay you back for any damage done.
Federal income tax was illegal until the 1930s (1940s?) or somewhere thereabouts. Our constitution forbid it. Congress quietly passed an amendment to change that. Now we work the first 4 months of the year to pay our "contributions" to the government.
Daniel T
03-23-2004, 01:22 PM
WOW!! This is amazing!! This thread has covered everything from redirections, to includes, to spelling, to taxes, and more! This will be very informational to someone who aims to be... a webdeveloper that has perfect spelling and is paid by tax money! Hmmm... I wish I was paid by tax money... ;)
-Dan
Aronya1
03-23-2004, 01:24 PM
Originally posted by DanieLTomaS
WOW!! This is amazing!! This thread has covered everything from redirections, to includes, to spelling, to taxes, and more! This will be very informational to someone who aims to be... a webdeveloper that has perfect spelling and is paid by tax money! Hmmm... I wish I was paid by tax money... ;)
-Dan
We aim to please. :D I believe quantum mechanics is next on the agenda.
Re: "I wish I was paid by tax money..." Sometimes it's not all it's cracked up to be...
Daniel T
03-23-2004, 01:26 PM
Originally posted by Aronya1
Re: "I wish I was paid by tax money..." Sometimes it's not all it's cracked up to be...
Yeah, I guess not. If I was paid by tax money, I would be paying myself, so it's kind of pointless.
-Dan
steelersfan88
03-23-2004, 02:54 PM
along those lines, i think we all know what taxes are; money of the government to provide for the good of the people. Of course what vladdy says is true, we are all truthful here, respectful, i think not, a bit harse might be a little polite Paul.
pyro
03-23-2004, 04:38 PM
Originally posted by steelersfan88
Of course what vladdy says is true, we are all truthful here, respectful, i think not, a bit harse might be a little polite Paul. Respect earns respect.
steelersfan88
03-23-2004, 05:10 PM
i don't feel that he has earned by respect, as many have (including yourself).
Sam
03-23-2004, 05:49 PM
Originally posted by steelersfan88
i don't feel that he has earned by respect, as many have (including yourself).
I don't believe that was his point, I believe he was trying to say that you haven't earned vladdy's respect, not the other way around
steelersfan88
03-23-2004, 05:59 PM
i understand this; that's why i said he hasn't earned my respect; the reason i do not respect him
the other way around suits similarly, as one does not respect the other, the other does not respect one.
Sam
03-23-2004, 06:05 PM
so I suppose that leaves the question of which deserves the respect in the first place. I'll refrain from comment here though...
Aronya1
03-23-2004, 06:05 PM
:confused:
steelersfan88
03-23-2004, 06:08 PM
thank you sam, at least someone knows when to hold to his/her own business, and not that of others. this would be a great way to earn the respect of me, since I notice that you are not revealing your opinions, while opposing, that should not be exposed at an unnecessary time.
Unfortunately, many members of the forums do not know when the time to reveal their opinions is; I am glad you are not one of them!
Allow me to clarify something, I easily earn the repect of others by being assisted to improve upon my beliefs, not by being contradicted upon them, for that results in slander, a criminal offense (and a felony, not a misdemeanor) and that is definately not the result that we all want, now is it?
Aronya1
03-23-2004, 06:13 PM
:confused: :confused:
Sam
03-23-2004, 06:14 PM
Originally posted by steelersfan88
...results in slander, a criminal offense (and a felony, not a misdemeanor)
though technically it would be Libel (since it is written not spoken)
steelersfan88
03-23-2004, 06:16 PM
yet written has come to mean, as are the body of legal documents, but yes, I do see the point where this may be considered libel instead :)
(we get way off topic aronya1, so just keep being confused :confused:, just kidding)
NOTE: I did not say j/k in case I was to be criticized.
PeOfEo
03-23-2004, 06:16 PM
Ok I am going to setup a team speak server for this forum and we are all going to have mic chat bcause I do not feel like typeing in this thread anymore because it is too long... also I do not like how we are critisizing my spelling when I have clearly stated that I will not go the extra mile to type my posts in word and run the spell checker (well if I have not already state that I am stating it now). If someone crtisizes my superior spelling again I will stab them in the face!
steelersfan88
03-23-2004, 06:19 PM
that would be a great idea peo, i'm all for it (the mic idea).
as for the spelling goes, make sure we can set up that new forum (i guess as a mod, you have a better say) to learn spelling, since I need to post there right away, as says the rest of these posters, except for you, sicne we are going as classmates :)
neenach2002
03-23-2004, 06:43 PM
Originally posted by PeOfEo
Ok I am going to setup a team speak server for this forum and we are all going to have mic chat bcause I do not feel like typeing in this thread anymore because it is too long... also I do not like how we are critisizing my spelling when I have clearly stated that I will not go the extra mile to type my posts in word and run the spell checker (well if I have not already state that I am stating it now). If someone crtisizes my superior spelling again I will stab them in the face!
You need word to spellchack your posts...O.O....oh whatever...screw the whole spelling thing...*grumble**grumble*:rolleyes:
Now about a forum where I would be mod....*yummy idea*...:D
Aronya1
03-23-2004, 06:56 PM
Originally posted by neenach2002
You need word to spellchack your posts...O.O....oh whatever...screw the whole spelling thing...*grumble**grumble*:rolleyes:
Now about a forum where I would be mod....*yummy idea*...:D
that would be a great idea neenach, i'm all for it (the mod idea).
as for the spelling goes, make sure we can set up that new forum (i guess as a mod, you have a better say) to learn spelling, since I need to post there right away, as says the rest of these posters, except for you, sicne we are going as classmates
PeOfEo
03-23-2004, 06:58 PM
you left out the quote /quote, made your post confusing.
Aronya1
03-23-2004, 07:00 PM
Thanks. Just a lucky break, I guess.
Aronya1
03-23-2004, 07:16 PM
Hey Peo,
Better be careful. You'll alienate the kid from Pittsburg.;)
steelersfan88
03-23-2004, 07:54 PM
not from pittsburgh (from around phila), just a fan of their sports teams. Peo would never alienate me; and i'd never leave anyway!
The quote tags definately would clarify your post, and what is the point of quoting without making a point about what I posted?
Paul Jr
03-23-2004, 08:29 PM
Originally posted by PeOfEo
also I do not like how we are critisizing my spelling when I have clearly stated that I will not go the extra mile to type my posts in word and run the spell checker (well if I have not already state that I am stating it now). If someone crtisizes my superior spelling again I will stab them in the face!
If you just took the time to type out your posts with correct spelling and grammar, you wouldn't have to run them through Word. Are you in some sort of rush? I would think you would know how to type proficiently, thus riddening yourself of the need to hunt-n-peck with horrid spelling and bad grammar.
Somehow I think this thread should be laid to rest...
steelersfan88
03-23-2004, 08:52 PM
I've been and continually back peo, but I'm going to again back Paul here as I respect him for taking actions to help put this thread back into a friendly direction. What is the administration for again? And why have we allowed numerous fights?
neenach2002
03-23-2004, 08:57 PM
Why does it seem that all threads I enter end up really long?...
*watches as Paul gets stabbed in the face by PeO*;)
Aronya1
03-23-2004, 10:00 PM
The post was the point. But, hey! Why do I need to worry about that kind of stuff? It's not efficient, right?
PeOfEo
03-23-2004, 10:19 PM
Originally posted by Paul Jr
If you just took the time to type out your posts with correct spelling and grammar, you wouldn't have to run them through Word. Are you in some sort of rush? I would think you would know how to type proficiently, thus riddening yourself of the need to hunt-n-peck with horrid spelling and bad grammar.
Somehow I think this thread should be laid to rest... No, I am just an impulsive typer. I do not hunt and peck... if I did I would be able to see what I am typeing and might sound out the words. You are really asking for it *tosses his knife from hand to hand*
steelersfan88
03-23-2004, 10:22 PM
let's not make that knife into the plural now, should we Paul? haha
Paul Jr
03-23-2004, 10:27 PM
Originally posted by PeOfEo
No, I am just an impulsive typer. I do not hunt and peck... if I did I would be able to see what I am typeing and might sound out the words. You are really asking for it *tosses his knife from hand to hand*
Bring it.
PeOfEo
03-23-2004, 10:28 PM
Originally posted by Paul Jr
Bring it. You wouldn't like me when I am angry!
steelersfan88
03-23-2004, 10:29 PM
ryan, this is about where you step in, as should other mods ('cept for peo since he has a knife that he's not afraid to use :)) and break up the brewing trouble. But why it seems no-one ever does this is simply problematic.
Paul Jr
03-23-2004, 10:31 PM
Originally posted by PeOfEo
You wouldn't like me when I am angry!
Who says I do now...?
neenach2002
03-23-2004, 10:31 PM
*says sorry for starting a war*...;)
PeOfEo
03-23-2004, 10:33 PM
Originally posted by Paul Jr
Who says I do now...? Man if I could only jump through my screen! Ok paul, I need your address, I am going to put it into map quest real fast.
pyro
03-23-2004, 10:40 PM
I think steelersfan88 is right on this one. It's time for this thread to die. I would have normally closed it long ago, but it's entertainment factor was just too high. ;)
webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved.