freelanceprogrammers.org Forum Index » ASP

HTML Scraper


View user's profile Post To page top
travis.falls@... Posted: Tue Jan 11, 2005 8:59 pm


Joined: 10 Jan 2006

Posts: 33
HTML Scraper
I am trying to write an HTML scraper. I have the following code which works
internal to my company but I get an error that states "An unhandled
exception of type `System.Net.WebException` occurred in system.dll

Additional information: The underlying connection was closed: Unable to
connect to the remote server."

We do not have a proxy server so that shouldn`t be the issue... does anyone
see anything here that is killing my code?

private static void Main(string[] args) {
HttpWebRequest webrequest = (HttpWebRequest)
WebRequest.Create("http://www.yahoo.com/");
webrequest.KeepAlive = false;
webrequest.Method = "GET";
webrequest.ContentType = "text/html";
webrequest.AllowAutoRedirect = false;

HttpWebResponse webresponse;
webresponse = (HttpWebResponse)
webrequest.GetResponse();

StreamReader loResponseStream = new
StreamReader(webresponse.GetResponseStream());
string Response = loResponseStream.ReadToEnd();
Console.Write(Response);
loResponseStream.Close();
webresponse.Close();
}

Travis D. Falls |Consultant, Raft.Net IT | 860.547.4070 |
travis.falls@...



-----Original Message-----
From: Charles Carroll [mailto:911@...]
Sent: Monday, January 10, 2005 3:32 PM
To: AspNetAnyQuestionIsOk@yahoogroups.com
Subject: Re: [AspNetAnyQuestionIsOk] Form wil not submit.


actions are not allowed in <form ruant=server"> till ASP.net 2.0


But WilsonWebForm has a FORM replacement that does support action. Its
on the list of great freebies @
http://www.learnasp.com/rb?3915


On Mon, 10 Jan 2005 15:04:13 -0500,
System-Administrator@...
<System-Administrator@...> wrote:
> I have a form at http://BelchingToadClan.gotdns.com/btcnet/JoinBTC.aspx
> That
> when filled out properly will not submit to the next page. Instead it
jsut
> re-displays itself. I have the code listed below. I have a form tag that
> tells it were to submit to but it ignores it apparently.
>
>
> <FORM name="JoinThebtc" action="JoinBTCcomplete.aspx" method="post"
> runat="server">
> <P><FONT face="Verdana"><STRONG><FONT
> color="#00ff00">NAME:</FONT></STRONG><BR>
> Your actual name.<BR>
> <INPUT id="name" type="text" maxLength="45"
size="45"
> name="name" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorName" runat="server" ErrorMessage="Enter your
> name" ControlToValidate="Name"></asp:RequiredFieldValidator><BR>
> <BR>
> <STRONG><FONT color="#00ff00">PLAYING&nbsp;
> NAME:</FONT></STRONG><BR>
> The name you go buy when playing online games. This
> is
> the name that the BTC
> members will know you by. You can place the tag at
> the
> end "oldSchool" or at
> the beginning "new wave" it is up to you.<BR>
> Examples = YourName[BTC] or [BTC]YourName<BR>
> <INPUT id="playingname" type="text" maxLength="45"
> size="45" name="playingname" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorPlayingName" runat="server" ErrorMessage="Enter

> your Playing Name"
> ControlToValidate="playingname"
> Display="Dynamic"></asp:RequiredFieldValidator><BR>
> <BR>
> <STRONG><FONT color="#00ff00">USERNAME:</FONT><FONT

> color="#ff0000" size="2"><BR>
> </FONT></STRONG>This will be your username to
access
> your web page so make
> sure you don`t put any spaces in it.<FONT
> color="#ff0000" size="2"><STRONG> </STRONG>
> </FONT>
> <BR>
> <INPUT id="username" type="text" maxLength="45"
> size="45" name="username" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorusername" runat="server" ErrorMessage="Enter a
> Username"
>
> ControlToValidate="username"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>PASSWORD:
> </STRONG></FONT>
> <BR>
> Choose a password so that you may edit your member
> page in the future. Write it
> down after you choose it.<BR>
> <INPUT id="password" type="text" maxLength="45"
> size="45" name="password" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorpassword" runat="server" ErrorMessage="Enter a
> Password"
>
> ControlToValidate="password"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>LOCATION:</STRONG></FONT><BR>
> Where you live. You can just put the state if you
> don`t want to give that out
> on your profile.
> <BR>
> <INPUT id="location" type="text" maxLength="45"
> size="45" value="Toadville, USA" name="location"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorlocation" runat="server" ErrorMessage="Enter a
> Location"
>
> ControlToValidate="location"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>EMAIL:
</STRONG></FONT>
> <BR>
> A valid email address. This is were your BTC email
> will go to. So you may want
> to get a hotmail account or something and if your
> playing name is Oboron[BTC]
> you could be <A href="http://www.hotmail.com"
> target="_blank">OboronBTC@...</A>.
> After being in the clan for a while you may get an
> official
> @BelchingToadCLan.com email.<BR>
> <INPUT id="email" type="text" maxLength="45"
> size="45"
> name="email" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorEmail" runat="server" ErrorMessage="Enter an
> Email" ControlToValidate="email"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>AGE:</STRONG></FONT><BR>
> Your age.<BR>
> <INPUT id="age" type="text" maxLength="45"
size="45"
> name="age" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorAge" runat="server" ErrorMessage="Enter your
age"
> ControlToValidate="age"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>ICQ:</STRONG></FONT><BR>
> Some of the clan uses ICQ. If you don`t have it
then
> you can download <A href="http://www.icq.com">
> ICQ</A> and install it then come back.<BR>
> <INPUT id="icq" type="text" maxLength="45"
size="45"
> value="I don`t have ICQ" name="icq"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorICQ" runat="server" ErrorMessage="Enter a
number"
> ControlToValidate="icq"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>AIM:</STRONG></FONT><BR>
> This is AOL Instant Messenger. The clan also uses
> this
> to communicate. If you
> don`t have this please download <A
> href="http://www.aol.com">AOL Instant Messenger</A>
> then come back and type in your user name.<BR>
> <INPUT id="aim" type="text" maxLength="45"
size="45"
> value="I don`t have AIM" name="aim"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorAIM" runat="server" ErrorMessage="Enter an ID"
> ControlToValidate="aim"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>OCCUPATION:</STRONG></FONT><BR>
> Your job. "If you have one :)"<BR>
> <INPUT id="occupation" type="text" maxLength="45"
> size="45" value="I have no job ......"
> name="occupation" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorOccupation" runat="server" ErrorMessage="Enter
an
> Occupation"
>
> ControlToValidate="occupation"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>BIO:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorBIO" runat="server" ErrorMessage="Please enter
> your BIO information"
>
> ControlToValidate="bio"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> This is the bio of your character. If you don`t
have
> any ideas then go look at
> some of the active member bio`s to get an idea on
> what
> you can put could put
> here. Or you can use this space to tell us how you
> chose the name you are using
> now.<BR>
> &nbsp;<TEXTAREA id="bio" name="bio" rows="12"
> wrap="true" cols="76" runat="server" style="WIDTH: 632px; HEIGHT:
> 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>PERSONAL INFORMATION:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorpersonalinformation" runat="server"
> ErrorMessage="Enter your Personal Information"
>
> ControlToValidate="personalinformation"></asp:RequiredFieldValidator>
> </STRONG></FONT>
> <BR>
> This is the place to fill your page with. Put
> anything
> you want in this
> section. Put music you like or riding motorcycles
> etc..
> <BR>
> &nbsp;<TEXTAREA id="personalinformation"
> name="personalinformation" rows="12" wrap="true" cols="76"
> runat="server" style="WIDTH: 632px; HEIGHT:
> 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>GAMES PLAYED:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorgamesplayed" runat="server"
ErrorMessage="Please
> enter games played"
>
>
ControlToValidate="gamesplayed"></asp:RequiredFieldValidator></STRONG></FONT
><BR>
> &nbsp;</FONT><FONT face="Verdana" size="2">
<TEXTAREA
> id="gamesplayed" name="gamesplayed" rows="12" wrap="true" cols="76"
> runat="server"
> style="WIDTH: 632px; HEIGHT: 198px">Quake, Quake2,

> Quake3, Ut99, UT2003, UT2004, Half Life, Half Life2, Half Life Counter
> Strike, Half Life2 Counter Strike Source, Doom3, Tron 2.0, Wow, Star Wars

> Galaxies, Quake4, Avp2, Halo, Halo2 ....</TEXTAREA></FONT><FONT
> face="Verdana"><BR>
> <BR>
> <BR>
> <STRONG><FONT color="#00ff00">PROFILE PHOTO:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorPhoto" runat="server" ErrorMessage="Please
enter
> a
> Photo Link"
>
>
ControlToValidate="Photo"></asp:RequiredFieldValidator></FONT></STRONG><BR>
> This is a personal photo of you or your character
> etc.
> If you have a photo on
> the net and want to use that paste the url into the

> box below. If you do not
> have a photo at this time then you can leave in the

> default photo already in
> the box. If you take out the link below without
> putting in a link to another
> photo your profile will have no photo and look like

> crap. So either have a
> photo or leave the one that is in there alone.
> </FONT><FONT face="Verdana" color="#ff0000" size="2">
> This is a 200x 200 image</FONT><FONT face="Verdana"

> size="2">.<BR>
> <INPUT id="Photo" type="text" maxLength="100"
> size="98" value="Images/Members/btcmemberdefault.gif"
> name="Photo" runat="server" style="WIDTH: 624px;
> HEIGHT: 22px"></FONT><FONT face="Verdana"><BR>
>
> _________________________________________________________<BR>
> <BIG><FONT color="#ff0000"><BIG>
> <BR>
> <BR>
> </BIG></FONT><FONT color="#0099ff"><B><BIG>SYSTEM

> INFORMATION</BIG></B></FONT></BIG><FONT color="#00ffff"><BR>
> </FONT><FONT size="2">This section tells us what
type
> of machine you have. Try to
> fill it out good as if you have a technical
problem
> then we will be able to
> help you solve it much faster with this
information.
> Plus this is your chance
> to show off that hot system you have. BRAG ABOUT
IT
> HERE.</FONT><BR>
> &nbsp;</FONT></P>
> <TABLE id="table84" cellSpacing="0" cellPadding="0"
> width="642" border="0">
> <TR>
> <TD vAlign="top"><FONT face="Verdana" size="2">
<FONT
> color="#0099ff"><STRONG>OPERATING SYSTEM:</STRONG></FONT><BR>
> <SELECT id="OS" size="1" name="OS"
runat="server">
> <OPTION value="WINDOWS-95">WINDOWS-95</OPTION>
> <OPTION value="WindowsXP PRO" selected>WindowsXP

> PRO</OPTION>
> <OPTION value="WindowsXP Home">WindowsXP
> Home</OPTION>
> <OPTION value="WINDOWS-98">WINDOWS-98</OPTION>
> <OPTION
value="WINDOWS-98SE">WINDOWS-98SE</OPTION>
> <OPTION value="WINDOWS-NT">WINDOWS-NT</OPTION>
> <OPTION value="WINDOWS2000">WINDOWS2000</OPTION>
> <OPTION value="WINDOWS-ME">WINDOWS-ME</OPTION>
> <OPTION value="LINIX">LINIX</OPTION>
> <OPTION value="UNIX">UNIX</OPTION>
> <OPTION value="MACINTOSH">MACINTOSH</OPTION>
> </SELECT></FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;</TD>
> </TR>
> <TR>
> <TD vAlign="top">&nbsp;
> </TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;
> </TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"><FONT
> color="#0099ff" size="2"><STRONG>CONNECTION:</STRONG></FONT><BR>
> <SELECT id="connect" size="1" name="connect"
> runat="server">
> <OPTION value="28.8 KB MODEM">28.8 KB
> MODEM</OPTION>
> <OPTION value="T3">T3</OPTION>
> <OPTION value="33.6 KB MODEM">33.6 KB
> MODEM</OPTION>
> <OPTION value="56 KB MODEM" selected>56 KB
> MODEM</OPTION>
> <OPTION value="ISDN">ISDN</OPTION>
> <OPTION value="DSL">DSL</OPTION>
> <OPTION value="ADSL">ADSL</OPTION>
> <OPTION value="SDSL">SDSL</OPTION>
> <OPTION value="CABLE MODEM">CABLE MODEM</OPTION>
> <OPTION value="T1">T1</OPTION>
> </SELECT></FONT></TD>
> <TD><FONT face="Verdana">&nbsp; </FONT>
> </TD>
> <TD vAlign="top" width="349"><FONT
> face="Verdana"><STRONG><FONT color="#0099ff" size="2">PROCESSOR:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorprocessor" runat="server" ErrorMessage="Enter
> Processor"
>
> ControlToValidate="processor"></asp:RequiredFieldValidator>
> </FONT><FONT color="#ff0000" size="2">
> <BR>
> </FONT></STRONG>&nbsp;<INPUT id="processor"
> type="text" maxLength="45" size="44" value="AMD" name="processor"
> runat="server"></FONT></TD>
> </TR>
> <TR>
> <TD><FONT face="Verdana">&nbsp; </FONT>
> </TD>
> <TD>&nbsp;</TD>
> <TD width="349">&nbsp;</TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"><FONT
> size="2"><FONT color="#0099ff"><STRONG>VIDEO CARD:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorvideocard" runat="server" ErrorMessage="Enter
> video card"
>
>
ControlToValidate="videocard"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> </FONT><INPUT id="videocard" type="text"
> maxLength="45" size="38" value="Radeon" name="videocard"
> runat="server"><br>
> &nbsp;</FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349"><FONT
> face="Verdana"><FONT color="#0099ff" size="2"><STRONG>SOUND
> CARD:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorsoundcard" runat="server" ErrorMessage="Enter
> sound card"
>
>
ControlToValidate="soundcard"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> &nbsp;<INPUT id="soundcard" type="text"
> maxLength="45" size="45" value="Sound Blaster Compatible"
> name="soundcard" runat="server"><br>
> &nbsp;</FONT></TD>
> </TR>
> <TR>
> <TD vAlign="top">&nbsp;
> </TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;
> </TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"
size="2"><FONT
> color="#0099ff" size="2"><STRONG>RAM:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorram" runat="server" ErrorMessage="Enter Ram"
> ControlToValidate="ram"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> &nbsp;<INPUT id="ram" type="text" maxLength="45"
> size="37" value="2MB" name="ram" runat="server"></FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349"><FONT face="Verdana"
> size="2"><FONT color="#0099ff" size="2"><STRONG>HARD
> DRIVE:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorharddrive" runat="server" ErrorMessage="Enter
> hard
> drive"
>
>
ControlToValidate="harddrive"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> &nbsp;<INPUT id="harddrive" type="text"
> maxLength="45" size="45" value="1GB" name="harddrive"
> runat="server"><br>
> &nbsp;</FONT></TD>
> </TR>
> </TABLE>
> <P><FONT face="Verdana"><STRONG><FONT
> color="#00ff00"><BR>
> </FONT><FONT color="#0099ff">ADDITIONAL SYSTEM
> INFORMATION:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatoradditionalsysteminformation" runat="server"
> ErrorMessage="Enter system information"
>
>
ControlToValidate="additionalsysteminformation"></asp:RequiredFieldValidator
></FONT></STRONG><BR>
> This is basically anything else you want on your
web
> page. You can fill it with
> pages of text if you want. Make sure you run a
spell
> check on it first :)<BR>
> &nbsp;<TEXTAREA id="additionalsysteminformation"
> name="additionalsysteminformation" rows="12" wrap="true"
> cols="76" runat="server" bio="post" style="WIDTH:
> 632px; HEIGHT: 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> </FONT><FONT face="Verdana" size="2">
> <BR>
> </FONT><FONT face="Verdana"><STRONG><FONT
> color="#0099ff">SYSTEM PHOTO:&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorSystemPhoto" runat="server" ErrorMessage="Enter

> System Photo"
>
>
ControlToValidate="SystemPhoto"></asp:RequiredFieldValidator></FONT></STRONG
><BR>
> This is a photo of your Computer System. If you
have
> a
> photo on the net and
> want to use that paste the url into the box below.
If
> you do not have a photo
> at this time then you can leave in the default
photo
> already in the box. If you
> take out the link below without putting in a link
to
> another photo your profile
> will have no photo and look like crap. So either
have
> a photo or leave the one
> that is in there alone. <FONT color="#ff0000"
> size="2">This is a 200x 200 image.</FONT></FONT><FONT face="Verdana"
> size="2"><BR>
> <INPUT id="SystemPhoto" type="text" maxLength="100"

> size="101" value="Images/SystemInformation.gif"
> name="SystemPhoto" runat="server" style="WIDTH:
> 640px; HEIGHT: 22px"><BR>
> </FONT><FONT face="Verdana">
> <BR>
> <BR>
> <INPUT id="Submit1" type="submit" value="Join the
> Belching Toad Clan" name="B1" runat="server"><BR>
> Click on this button to send your information to
the
> database and become a
> member of BTC. If you have missed anything or made
a
> mistake it will be shown
> in red at the point you made the mistake. If you
have
> any problems then contact
> me at <a
> href="mailto:BelchermanBTC@...?subject=Problem with Join

> BTC Application">
> BelchermanBTC@...</a> with the
> issue
> and I will try to
> help. Welcome to the clan and have fun.<BR>
> &nbsp;</FONT></P>
> </FORM>
>
>
>
> ________________________________
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



Yahoo! Groups Links








This communication, including attachments, is for the exclusive use of
addressee and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, any use, copying,
disclosure, dissemination or distribution is strictly prohibited. If
you are not the intended recipient, please notify the sender
immediately by return email and delete this communication and destroy all
copies.
Reply with quote
Send private message
View user's profile Post To page top
aemca_san Posted: Tue Jan 11, 2005 9:24 pm


Joined: 10 Jan 2006

Posts: 12
HTML Scraper
Some examples on screenscraping:
http://www.dotnetjohn.com/articles/articleid93.aspx

http://odetocode.com/Articles/162.aspx

Try those examples and see if you have better luck.



-----Original Message-----
From: Falls, Travis D (HTSC, CASD) [mailto:travis.falls@...]
Sent: dinsdag 11 januari 2005 15:59
To: `AspNetAnyQuestionIsOk@yahoogroups.com`
Subject: [AspNetAnyQuestionIsOk] HTML Scraper


I am trying to write an HTML scraper. I have the following code which works
internal to my company but I get an error that states "An unhandled
exception of type `System.Net.WebException` occurred in system.dll

Additional information: The underlying connection was closed: Unable to
connect to the remote server."

We do not have a proxy server so that shouldn`t be the issue... does anyone
see anything here that is killing my code?

private static void Main(string[] args) {
HttpWebRequest webrequest = (HttpWebRequest)
WebRequest.Create("http://www.yahoo.com/");
webrequest.KeepAlive = false;
webrequest.Method = "GET";
webrequest.ContentType = "text/html";
webrequest.AllowAutoRedirect = false;

HttpWebResponse webresponse;
webresponse = (HttpWebResponse)
webrequest.GetResponse();

StreamReader loResponseStream = new
StreamReader(webresponse.GetResponseStream());
string Response = loResponseStream.ReadToEnd();
Console.Write(Response);
loResponseStream.Close();
webresponse.Close();
}

Travis D. Falls |Consultant, Raft.Net IT | 860.547.4070 |
travis.falls@...



-----Original Message-----
From: Charles Carroll [mailto:911@...]
Sent: Monday, January 10, 2005 3:32 PM
To: AspNetAnyQuestionIsOk@yahoogroups.com
Subject: Re: [AspNetAnyQuestionIsOk] Form wil not submit.


actions are not allowed in <form ruant=server"> till ASP.net 2.0


But WilsonWebForm has a FORM replacement that does support action. Its
on the list of great freebies @
http://www.learnasp.com/rb?3915


On Mon, 10 Jan 2005 15:04:13 -0500,
System-Administrator@...
<System-Administrator@...> wrote:
> I have a form at http://BelchingToadClan.gotdns.com/btcnet/JoinBTC.aspx
> That
> when filled out properly will not submit to the next page. Instead it
jsut
> re-displays itself. I have the code listed below. I have a form tag that
> tells it were to submit to but it ignores it apparently.
>
>
> <FORM name="JoinThebtc" action="JoinBTCcomplete.aspx" method="post"
> runat="server">
> <P><FONT face="Verdana"><STRONG><FONT
> color="#00ff00">NAME:</FONT></STRONG><BR>
> Your actual name.<BR>
> <INPUT id="name" type="text" maxLength="45"
size="45"
> name="name" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorName" runat="server" ErrorMessage="Enter your
> name" ControlToValidate="Name"></asp:RequiredFieldValidator><BR>
> <BR>
> <STRONG><FONT color="#00ff00">PLAYING&nbsp;
> NAME:</FONT></STRONG><BR>
> The name you go buy when playing online games. This
> is
> the name that the BTC
> members will know you by. You can place the tag at
> the
> end "oldSchool" or at
> the beginning "new wave" it is up to you.<BR>
> Examples = YourName[BTC] or [BTC]YourName<BR>
> <INPUT id="playingname" type="text" maxLength="45"
> size="45" name="playingname" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorPlayingName" runat="server" ErrorMessage="Enter

> your Playing Name"
> ControlToValidate="playingname"
> Display="Dynamic"></asp:RequiredFieldValidator><BR>
> <BR>
> <STRONG><FONT color="#00ff00">USERNAME:</FONT><FONT

> color="#ff0000" size="2"><BR>
> </FONT></STRONG>This will be your username to
access
> your web page so make
> sure you don`t put any spaces in it.<FONT
> color="#ff0000" size="2"><STRONG> </STRONG>
> </FONT>
> <BR>
> <INPUT id="username" type="text" maxLength="45"
> size="45" name="username" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorusername" runat="server" ErrorMessage="Enter a
> Username"
>
> ControlToValidate="username"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>PASSWORD:
> </STRONG></FONT>
> <BR>
> Choose a password so that you may edit your member
> page in the future. Write it
> down after you choose it.<BR>
> <INPUT id="password" type="text" maxLength="45"
> size="45" name="password" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorpassword" runat="server" ErrorMessage="Enter a
> Password"
>
> ControlToValidate="password"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>LOCATION:</STRONG></FONT><BR>
> Where you live. You can just put the state if you
> don`t want to give that out
> on your profile.
> <BR>
> <INPUT id="location" type="text" maxLength="45"
> size="45" value="Toadville, USA" name="location"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorlocation" runat="server" ErrorMessage="Enter a
> Location"
>
> ControlToValidate="location"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>EMAIL:
</STRONG></FONT>
> <BR>
> A valid email address. This is were your BTC email
> will go to. So you may want
> to get a hotmail account or something and if your
> playing name is Oboron[BTC]
> you could be <A href="http://www.hotmail.com"
> target="_blank">OboronBTC@...</A>.
> After being in the clan for a while you may get an
> official
> @BelchingToadCLan.com email.<BR>
> <INPUT id="email" type="text" maxLength="45"
> size="45"
> name="email" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorEmail" runat="server" ErrorMessage="Enter an
> Email" ControlToValidate="email"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>AGE:</STRONG></FONT><BR>
> Your age.<BR>
> <INPUT id="age" type="text" maxLength="45"
size="45"
> name="age" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorAge" runat="server" ErrorMessage="Enter your
age"
> ControlToValidate="age"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>ICQ:</STRONG></FONT><BR>
> Some of the clan uses ICQ. If you don`t have it
then
> you can download <A href="http://www.icq.com">
> ICQ</A> and install it then come back.<BR>
> <INPUT id="icq" type="text" maxLength="45"
size="45"
> value="I don`t have ICQ" name="icq"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorICQ" runat="server" ErrorMessage="Enter a
number"
> ControlToValidate="icq"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>AIM:</STRONG></FONT><BR>
> This is AOL Instant Messenger. The clan also uses
> this
> to communicate. If you
> don`t have this please download <A
> href="http://www.aol.com">AOL Instant Messenger</A>
> then come back and type in your user name.<BR>
> <INPUT id="aim" type="text" maxLength="45"
size="45"
> value="I don`t have AIM" name="aim"
> runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorAIM" runat="server" ErrorMessage="Enter an ID"
> ControlToValidate="aim"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT
> color="#00ff00"><STRONG>OCCUPATION:</STRONG></FONT><BR>
> Your job. "If you have one :)"<BR>
> <INPUT id="occupation" type="text" maxLength="45"
> size="45" value="I have no job ......"
> name="occupation" runat="server">&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorOccupation" runat="server" ErrorMessage="Enter
an
> Occupation"
>
> ControlToValidate="occupation"></asp:RequiredFieldValidator><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>BIO:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorBIO" runat="server" ErrorMessage="Please enter
> your BIO information"
>
> ControlToValidate="bio"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> This is the bio of your character. If you don`t
have
> any ideas then go look at
> some of the active member bio`s to get an idea on
> what
> you can put could put
> here. Or you can use this space to tell us how you
> chose the name you are using
> now.<BR>
> &nbsp;<TEXTAREA id="bio" name="bio" rows="12"
> wrap="true" cols="76" runat="server" style="WIDTH: 632px; HEIGHT:
> 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>PERSONAL INFORMATION:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorpersonalinformation" runat="server"
> ErrorMessage="Enter your Personal Information"
>
> ControlToValidate="personalinformation"></asp:RequiredFieldValidator>
> </STRONG></FONT>
> <BR>
> This is the place to fill your page with. Put
> anything
> you want in this
> section. Put music you like or riding motorcycles
> etc..
> <BR>
> &nbsp;<TEXTAREA id="personalinformation"
> name="personalinformation" rows="12" wrap="true" cols="76"
> runat="server" style="WIDTH: 632px; HEIGHT:
> 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> <FONT color="#00ff00"><STRONG>GAMES PLAYED:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorgamesplayed" runat="server"
ErrorMessage="Please
> enter games played"
>
>
ControlToValidate="gamesplayed"></asp:RequiredFieldValidator></STRONG></FONT
><BR>
> &nbsp;</FONT><FONT face="Verdana" size="2">
<TEXTAREA
> id="gamesplayed" name="gamesplayed" rows="12" wrap="true" cols="76"
> runat="server"
> style="WIDTH: 632px; HEIGHT: 198px">Quake, Quake2,

> Quake3, Ut99, UT2003, UT2004, Half Life, Half Life2, Half Life Counter
> Strike, Half Life2 Counter Strike Source, Doom3, Tron 2.0, Wow, Star Wars

> Galaxies, Quake4, Avp2, Halo, Halo2 ....</TEXTAREA></FONT><FONT
> face="Verdana"><BR>
> <BR>
> <BR>
> <STRONG><FONT color="#00ff00">PROFILE PHOTO:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorPhoto" runat="server" ErrorMessage="Please
enter
> a
> Photo Link"
>
>
ControlToValidate="Photo"></asp:RequiredFieldValidator></FONT></STRONG><BR>
> This is a personal photo of you or your character
> etc.
> If you have a photo on
> the net and want to use that paste the url into the

> box below. If you do not
> have a photo at this time then you can leave in the

> default photo already in
> the box. If you take out the link below without
> putting in a link to another
> photo your profile will have no photo and look like

> crap. So either have a
> photo or leave the one that is in there alone.
> </FONT><FONT face="Verdana" color="#ff0000" size="2">
> This is a 200x 200 image</FONT><FONT face="Verdana"

> size="2">.<BR>
> <INPUT id="Photo" type="text" maxLength="100"
> size="98" value="Images/Members/btcmemberdefault.gif"
> name="Photo" runat="server" style="WIDTH: 624px;
> HEIGHT: 22px"></FONT><FONT face="Verdana"><BR>
>
> _________________________________________________________<BR>
> <BIG><FONT color="#ff0000"><BIG>
> <BR>
> <BR>
> </BIG></FONT><FONT color="#0099ff"><B><BIG>SYSTEM

> INFORMATION</BIG></B></FONT></BIG><FONT color="#00ffff"><BR>
> </FONT><FONT size="2">This section tells us what
type
> of machine you have. Try to
> fill it out good as if you have a technical
problem
> then we will be able to
> help you solve it much faster with this
information.
> Plus this is your chance
> to show off that hot system you have. BRAG ABOUT
IT
> HERE.</FONT><BR>
> &nbsp;</FONT></P>
> <TABLE id="table84" cellSpacing="0" cellPadding="0"
> width="642" border="0">
> <TR>
> <TD vAlign="top"><FONT face="Verdana" size="2">
<FONT
> color="#0099ff"><STRONG>OPERATING SYSTEM:</STRONG></FONT><BR>
> <SELECT id="OS" size="1" name="OS"
runat="server">
> <OPTION value="WINDOWS-95">WINDOWS-95</OPTION>
> <OPTION value="WindowsXP PRO" selected>WindowsXP

> PRO</OPTION>
> <OPTION value="WindowsXP Home">WindowsXP
> Home</OPTION>
> <OPTION value="WINDOWS-98">WINDOWS-98</OPTION>
> <OPTION
value="WINDOWS-98SE">WINDOWS-98SE</OPTION>
> <OPTION value="WINDOWS-NT">WINDOWS-NT</OPTION>
> <OPTION value="WINDOWS2000">WINDOWS2000</OPTION>
> <OPTION value="WINDOWS-ME">WINDOWS-ME</OPTION>
> <OPTION value="LINIX">LINIX</OPTION>
> <OPTION value="UNIX">UNIX</OPTION>
> <OPTION value="MACINTOSH">MACINTOSH</OPTION>
> </SELECT></FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;</TD>
> </TR>
> <TR>
> <TD vAlign="top">&nbsp;
> </TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;
> </TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"><FONT
> color="#0099ff" size="2"><STRONG>CONNECTION:</STRONG></FONT><BR>
> <SELECT id="connect" size="1" name="connect"
> runat="server">
> <OPTION value="28.8 KB MODEM">28.8 KB
> MODEM</OPTION>
> <OPTION value="T3">T3</OPTION>
> <OPTION value="33.6 KB MODEM">33.6 KB
> MODEM</OPTION>
> <OPTION value="56 KB MODEM" selected>56 KB
> MODEM</OPTION>
> <OPTION value="ISDN">ISDN</OPTION>
> <OPTION value="DSL">DSL</OPTION>
> <OPTION value="ADSL">ADSL</OPTION>
> <OPTION value="SDSL">SDSL</OPTION>
> <OPTION value="CABLE MODEM">CABLE MODEM</OPTION>
> <OPTION value="T1">T1</OPTION>
> </SELECT></FONT></TD>
> <TD><FONT face="Verdana">&nbsp; </FONT>
> </TD>
> <TD vAlign="top" width="349"><FONT
> face="Verdana"><STRONG><FONT color="#0099ff" size="2">PROCESSOR:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorprocessor" runat="server" ErrorMessage="Enter
> Processor"
>
> ControlToValidate="processor"></asp:RequiredFieldValidator>
> </FONT><FONT color="#ff0000" size="2">
> <BR>
> </FONT></STRONG>&nbsp;<INPUT id="processor"
> type="text" maxLength="45" size="44" value="AMD" name="processor"
> runat="server"></FONT></TD>
> </TR>
> <TR>
> <TD><FONT face="Verdana">&nbsp; </FONT>
> </TD>
> <TD>&nbsp;</TD>
> <TD width="349">&nbsp;</TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"><FONT
> size="2"><FONT color="#0099ff"><STRONG>VIDEO CARD:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorvideocard" runat="server" ErrorMessage="Enter
> video card"
>
>
ControlToValidate="videocard"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> </FONT><INPUT id="videocard" type="text"
> maxLength="45" size="38" value="Radeon" name="videocard"
> runat="server"><br>
> &nbsp;</FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349"><FONT
> face="Verdana"><FONT color="#0099ff" size="2"><STRONG>SOUND
> CARD:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorsoundcard" runat="server" ErrorMessage="Enter
> sound card"
>
>
ControlToValidate="soundcard"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> &nbsp;<INPUT id="soundcard" type="text"
> maxLength="45" size="45" value="Sound Blaster Compatible"
> name="soundcard" runat="server"><br>
> &nbsp;</FONT></TD>
> </TR>
> <TR>
> <TD vAlign="top">&nbsp;
> </TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349">&nbsp;
> </TD>
> </TR>
> <TR>
> <TD vAlign="top"><FONT face="Verdana"
size="2"><FONT
> color="#0099ff" size="2"><STRONG>RAM:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorram" runat="server" ErrorMessage="Enter Ram"
> ControlToValidate="ram"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> &nbsp;<INPUT id="ram" type="text" maxLength="45"
> size="37" value="2MB" name="ram" runat="server"></FONT></TD>
> <TD>&nbsp;</TD>
> <TD vAlign="top" width="349"><FONT face="Verdana"
> size="2"><FONT color="#0099ff" size="2"><STRONG>HARD
> DRIVE:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorharddrive" runat="server" ErrorMessage="Enter
> hard
> drive"
>
>
ControlToValidate="harddrive"></asp:RequiredFieldValidator></STRONG></FONT><
BR>
> &nbsp;<INPUT id="harddrive" type="text"
> maxLength="45" size="45" value="1GB" name="harddrive"
> runat="server"><br>
> &nbsp;</FONT></TD>
> </TR>
> </TABLE>
> <P><FONT face="Verdana"><STRONG><FONT
> color="#00ff00"><BR>
> </FONT><FONT color="#0099ff">ADDITIONAL SYSTEM
> INFORMATION:
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatoradditionalsysteminformation" runat="server"
> ErrorMessage="Enter system information"
>
>
ControlToValidate="additionalsysteminformation"></asp:RequiredFieldValidator
></FONT></STRONG><BR>
> This is basically anything else you want on your
web
> page. You can fill it with
> pages of text if you want. Make sure you run a
spell
> check on it first :)<BR>
> &nbsp;<TEXTAREA id="additionalsysteminformation"
> name="additionalsysteminformation" rows="12" wrap="true"
> cols="76" runat="server" bio="post" style="WIDTH:
> 632px; HEIGHT: 198px">Erase this text and put yours in.</TEXTAREA><BR>
> <BR>
> </FONT><FONT face="Verdana" size="2">
> <BR>
> </FONT><FONT face="Verdana"><STRONG><FONT
> color="#0099ff">SYSTEM PHOTO:&nbsp;
> <asp:RequiredFieldValidator
> id="RequiredFieldValidatorSystemPhoto" runat="server" ErrorMessage="Enter

> System Photo"
>
>
ControlToValidate="SystemPhoto"></asp:RequiredFieldValidator></FONT></STRONG
><BR>
> This is a photo of your Computer System. If you
have
> a
> photo on the net and
> want to use that paste the url into the box below.
If
> you do not have a photo
> at this time then you can leave in the default
photo
> already in the box. If you
> take out the link below without putting in a link
to
> another photo your profile
> will have no photo and look like crap. So either
have
> a photo or leave the one
> that is in there alone. <FONT color="#ff0000"
> size="2">This is a 200x 200 image.</FONT></FONT><FONT face="Verdana"
> size="2"><BR>
> <INPUT id="SystemPhoto" type="text" maxLength="100"

> size="101" value="Images/SystemInformation.gif"
> name="SystemPhoto" runat="server" style="WIDTH:
> 640px; HEIGHT: 22px"><BR>
> </FONT><FONT face="Verdana">
> <BR>
> <BR>
> <INPUT id="Submit1" type="submit" value="Join the
> Belching Toad Clan" name="B1" runat="server"><BR>
> Click on this button to send your information to
the
> database and become a
> member of BTC. If you have missed anything or made
a
> mistake it will be shown
> in red at the point you made the mistake. If you
have
> any problems then contact
> me at <a
> href="mailto:BelchermanBTC@...?subject=Problem with Join

> BTC Application">
> BelchermanBTC@...</a> with the
> issue
> and I will try to
> help. Welcome to the clan and have fun.<BR>
> &nbsp;</FONT></P>
> </FORM>
>
>
>
> ________________________________
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



Yahoo! Groups Links








This communication, including attachments, is for the exclusive use of
addressee and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, any use, copying,
disclosure, dissemination or distribution is strictly prohibited. If
you are not the intended recipient, please notify the sender
immediately by return email and delete this communication and destroy all
copies.




Yahoo! Groups Links
Reply with quote
Send private message
View user's profile Post To page top
charlesmarkc... Posted: Wed Jan 12, 2005 12:39 am


Joined: 07 Jan 2006

Posts: 63
HTML Scraper
code @
http://www.learnasp.com/freebook/learn/usercontrols-scraper.aspx
will do what you want.


On Tue, 11 Jan 2005 09:59:13 -0500, Falls, Travis D (HTSC, CASD)
<travis.falls@...> wrote:
> I am trying to write an HTML scraper. I have the following code which
> works
> internal to my company but I get an error that states "An unhandled
> exception of type `System.Net.WebException` occurred in system.dll
>
> Additional information: The underlying connection was closed: Unable to
> connect to the remote server."
>
> We do not have a proxy server so that shouldn`t be the issue... does anyone
> see anything here that is killing my code?
>
> private static void Main(string[] args) {
> HttpWebRequest webrequest = (HttpWebRequest)
> WebRequest.Create("http://www.yahoo.com/");
> webrequest.KeepAlive = false;
> webrequest.Method = "GET";
> webrequest.ContentType = "text/html";
> webrequest.AllowAutoRedirect = false;
>
> HttpWebResponse webresponse;
> webresponse = (HttpWebResponse)
> webrequest.GetResponse();
>
> StreamReader loResponseStream = new
> StreamReader(webresponse.GetResponseStream());
> string Response = loResponseStream.ReadToEnd();
> Console.Write(Response);
> loResponseStream.Close();
> webresponse.Close();
> }
>
> Travis D. Falls |Consultant, Raft.Net IT | 860.547.4070 |
> travis.falls@...
>
>
>
> -----Original Message-----
> From: Charles Carroll [mailto:911@...]
> Sent: Monday, January 10, 2005 3:32 PM
> To: AspNetAnyQuestionIsOk@yahoogroups.com
> Subject: Re: [AspNetAnyQuestionIsOk] Form wil not submit.
>
>
> actions are not allowed in <form ruant=server"> till ASP.net 2.0
>
>
> But WilsonWebForm has a FORM replacement that does support action. Its
> on the list of great freebies @
> http://www.learnasp.com/rb?3915
>
>
> On Mon, 10 Jan 2005 15:04:13 -0500,
> System-Administrator@...
> <System-Administrator@...> wrote:
> > I have a form at http://BelchingToadClan.gotdns.com/btcnet/JoinBTC.aspx
> > That
> > when filled out properly will not submit to the next page. Instead it
> jsut
> > re-displays itself. I have the code listed below. I have a form tag that
> > tells it were to submit to but it ignores it apparently.
> >
> >
> > <FORM name="JoinThebtc" action="JoinBTCcomplete.aspx" method="post"
> > runat="server">
> > <P><FONT face="Verdana"><STRONG><FONT
> > color="#00ff00">NAME:</FONT></STRONG><BR>
> > Your actual name.<BR>
> > <INPUT id="name" type="text" maxLength="45"
> size="45"
> > name="name" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorName" runat="server" ErrorMessage="Enter your
> > name" ControlToValidate="Name"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <STRONG><FONT color="#00ff00">PLAYING&nbsp;
> > NAME:</FONT></STRONG><BR>
> > The name you go buy when playing online games.
> This
> > is
> > the name that the BTC
> > members will know you by. You can place the tag at
> > the
> > end "oldSchool" or at
> > the beginning "new wave" it is up to you.<BR>
> > Examples = YourName[BTC] or [BTC]YourName<BR>
> > <INPUT id="playingname" type="text" maxLength="45"
> > size="45" name="playingname" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorPlayingName" runat="server"
> ErrorMessage="Enter
>
> > your Playing Name"
> > ControlToValidate="playingname"
> > Display="Dynamic"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <STRONG><FONT
> color="#00ff00">USERNAME:</FONT><FONT
>
> > color="#ff0000" size="2"><BR>
> > </FONT></STRONG>This will be your username to
> access
> > your web page so make
> > sure you don`t put any spaces in it.<FONT
> > color="#ff0000" size="2"><STRONG> </STRONG>
> > </FONT>
> > <BR>
> > <INPUT id="username" type="text" maxLength="45"
> > size="45" name="username" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorusername" runat="server" ErrorMessage="Enter a
> > Username"
> >
> > ControlToValidate="username"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT color="#00ff00"><STRONG>PASSWORD:
> > </STRONG></FONT>
> > <BR>
> > Choose a password so that you may edit your member
> > page in the future. Write it
> > down after you choose it.<BR>
> > <INPUT id="password" type="text" maxLength="45"
> > size="45" name="password" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorpassword" runat="server" ErrorMessage="Enter a
> > Password"
> >
> > ControlToValidate="password"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT
> > color="#00ff00"><STRONG>LOCATION:</STRONG></FONT><BR>
> > Where you live. You can just put the state if you
> > don`t want to give that out
> > on your profile.
> > <BR>
> > <INPUT id="location" type="text" maxLength="45"
> > size="45" value="Toadville, USA" name="location"
> > runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorlocation" runat="server" ErrorMessage="Enter a
> > Location"
> >
> > ControlToValidate="location"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT color="#00ff00"><STRONG>EMAIL:
> </STRONG></FONT>
> > <BR>
> > A valid email address. This is were your BTC email
> > will go to. So you may want
> > to get a hotmail account or something and if your
> > playing name is Oboron[BTC]
> > you could be <A href="http://www.hotmail.com"
> > target="_blank">OboronBTC@...</A>.
> > After being in the clan for a while you may get an
> > official
> > @BelchingToadCLan.com email.<BR>
> > <INPUT id="email" type="text" maxLength="45"
> > size="45"
> > name="email" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorEmail" runat="server" ErrorMessage="Enter an
> > Email" ControlToValidate="email"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT
> > color="#00ff00"><STRONG>AGE:</STRONG></FONT><BR>
> > Your age.<BR>
> > <INPUT id="age" type="text" maxLength="45"
> size="45"
> > name="age" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorAge" runat="server" ErrorMessage="Enter your
> age"
> > ControlToValidate="age"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT
> > color="#00ff00"><STRONG>ICQ:</STRONG></FONT><BR>
> > Some of the clan uses ICQ. If you don`t have it
> then
> > you can download <A href="http://www.icq.com">
> > ICQ</A> and install it then come back.<BR>
> > <INPUT id="icq" type="text" maxLength="45"
> size="45"
> > value="I don`t have ICQ" name="icq"
> > runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorICQ" runat="server" ErrorMessage="Enter a
> number"
> > ControlToValidate="icq"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT
> > color="#00ff00"><STRONG>AIM:</STRONG></FONT><BR>
> > This is AOL Instant Messenger. The clan also uses
> > this
> > to communicate. If you
> > don`t have this please download <A
> > href="http://www.aol.com">AOL Instant Messenger</A>
> > then come back and type in your user name.<BR>
> > <INPUT id="aim" type="text" maxLength="45"
> size="45"
> > value="I don`t have AIM" name="aim"
> > runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorAIM" runat="server" ErrorMessage="Enter an ID"
> > ControlToValidate="aim"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT
> > color="#00ff00"><STRONG>OCCUPATION:</STRONG></FONT><BR>
> > Your job. "If you have one :)"<BR>
> > <INPUT id="occupation" type="text" maxLength="45"
> > size="45" value="I have no job ......"
> > name="occupation" runat="server">&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorOccupation" runat="server" ErrorMessage="Enter
> an
> > Occupation"
> >
> > ControlToValidate="occupation"></asp:RequiredFieldValidator><BR>
> > <BR>
> > <FONT color="#00ff00"><STRONG>BIO:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorBIO" runat="server" ErrorMessage="Please enter
> > your BIO information"
> >
> > ControlToValidate="bio"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> > This is the bio of your character. If you don`t
> have
> > any ideas then go look at
> > some of the active member bio`s to get an idea on
> > what
> > you can put could put
> > here. Or you can use this space to tell us how you
> > chose the name you are using
> > now.<BR>
> > &nbsp;<TEXTAREA id="bio" name="bio" rows="12"
> > wrap="true" cols="76" runat="server" style="WIDTH: 632px; HEIGHT:
> > 198px">Erase this text and put yours in.</TEXTAREA><BR>
> > <BR>
> > <FONT color="#00ff00"><STRONG>PERSONAL
> INFORMATION:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorpersonalinformation" runat="server"
> > ErrorMessage="Enter your Personal Information"
> >
> > ControlToValidate="personalinformation"></asp:RequiredFieldValidator>
> > </STRONG></FONT>
> > <BR>
> > This is the place to fill your page with. Put
> > anything
> > you want in this
> > section. Put music you like or riding motorcycles
> > etc..
> > <BR>
> > &nbsp;<TEXTAREA id="personalinformation"
> > name="personalinformation" rows="12" wrap="true" cols="76"
> > runat="server" style="WIDTH: 632px; HEIGHT:
> > 198px">Erase this text and put yours in.</TEXTAREA><BR>
> > <BR>
> > <FONT color="#00ff00"><STRONG>GAMES PLAYED:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorgamesplayed" runat="server"
> ErrorMessage="Please
> > enter games played"
> >
> >
> ControlToValidate="gamesplayed"></asp:RequiredFieldValidator></STRONG></FONT
> ><BR>
> > &nbsp;</FONT><FONT face="Verdana" size="2">
> <TEXTAREA
> > id="gamesplayed" name="gamesplayed" rows="12" wrap="true" cols="76"
> > runat="server"
> > style="WIDTH: 632px; HEIGHT: 198px">Quake,
> Quake2,
>
> > Quake3, Ut99, UT2003, UT2004, Half Life, Half Life2, Half Life Counter
> > Strike, Half Life2 Counter Strike Source, Doom3, Tron 2.0, Wow, Star
> Wars
>
> > Galaxies, Quake4, Avp2, Halo, Halo2 ....</TEXTAREA></FONT><FONT
> > face="Verdana"><BR>
> > <BR>
> > <BR>
> > <STRONG><FONT color="#00ff00">PROFILE PHOTO:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorPhoto" runat="server" ErrorMessage="Please
> enter
> > a
> > Photo Link"
> >
> >
> ControlToValidate="Photo"></asp:RequiredFieldValidator></FONT></STRONG><BR>
> > This is a personal photo of you or your character
> > etc.
> > If you have a photo on
> > the net and want to use that paste the url into
> the
>
> > box below. If you do not
> > have a photo at this time then you can leave in
> the
>
> > default photo already in
> > the box. If you take out the link below without
> > putting in a link to another
> > photo your profile will have no photo and look
> like
>
> > crap. So either have a
> > photo or leave the one that is in there alone.
> > </FONT><FONT face="Verdana" color="#ff0000" size="2">
> > This is a 200x 200 image</FONT><FONT
> face="Verdana"
>
> > size="2">.<BR>
> > <INPUT id="Photo" type="text" maxLength="100"
> > size="98" value="Images/Members/btcmemberdefault.gif"
> > name="Photo" runat="server" style="WIDTH: 624px;
> > HEIGHT: 22px"></FONT><FONT face="Verdana"><BR>
> >
> > _________________________________________________________<BR>
> > <BIG><FONT color="#ff0000"><BIG>
> > <BR>
> > <BR>
> > </BIG></FONT><FONT
> color="#0099ff"><B><BIG>SYSTEM
>
> > INFORMATION</BIG></B></FONT></BIG><FONT color="#00ffff"><BR>
> > </FONT><FONT size="2">This section tells us what
> type
> > of machine you have. Try to
> > fill it out good as if you have a technical
> problem
> > then we will be able to
> > help you solve it much faster with this
> information.
> > Plus this is your chance
> > to show off that hot system you have. BRAG ABOUT
> IT
> > HERE.</FONT><BR>
> > &nbsp;</FONT></P>
> > <TABLE id="table84" cellSpacing="0" cellPadding="0"
> > width="642" border="0">
> > <TR>
> > <TD vAlign="top"><FONT face="Verdana" size="2">
> <FONT
> > color="#0099ff"><STRONG>OPERATING SYSTEM:</STRONG></FONT><BR>
> > <SELECT id="OS" size="1" name="OS"
> runat="server">
> > <OPTION value="WINDOWS-95">WINDOWS-95</OPTION>
> > <OPTION value="WindowsXP PRO"
> selected>WindowsXP
>
> > PRO</OPTION>
> > <OPTION value="WindowsXP Home">WindowsXP
> > Home</OPTION>
> > <OPTION value="WINDOWS-98">WINDOWS-98</OPTION>
> > <OPTION
> value="WINDOWS-98SE">WINDOWS-98SE</OPTION>
> > <OPTION value="WINDOWS-NT">WINDOWS-NT</OPTION>
> > <OPTION
> value="WINDOWS2000">WINDOWS2000</OPTION>
> > <OPTION value="WINDOWS-ME">WINDOWS-ME</OPTION>
> > <OPTION value="LINIX">LINIX</OPTION>
> > <OPTION value="UNIX">UNIX</OPTION>
> > <OPTION value="MACINTOSH">MACINTOSH</OPTION>
> > </SELECT></FONT></TD>
> > <TD>&nbsp;</TD>
> > <TD vAlign="top" width="349">&nbsp;</TD>
> > </TR>
> > <TR>
> > <TD vAlign="top">&nbsp;
> > </TD>
> > <TD>&nbsp;</TD>
> > <TD vAlign="top" width="349">&nbsp;
> > </TD>
> > </TR>
> > <TR>
> > <TD vAlign="top"><FONT face="Verdana"><FONT
> > color="#0099ff" size="2"><STRONG>CONNECTION:</STRONG></FONT><BR>
> > <SELECT id="connect" size="1" name="connect"
> > runat="server">
> > <OPTION value="28.8 KB MODEM">28.8 KB
> > MODEM</OPTION>
> > <OPTION value="T3">T3</OPTION>
> > <OPTION value="33.6 KB MODEM">33.6 KB
> > MODEM</OPTION>
> > <OPTION value="56 KB MODEM" selected>56 KB
> > MODEM</OPTION>
> > <OPTION value="ISDN">ISDN</OPTION>
> > <OPTION value="DSL">DSL</OPTION>
> > <OPTION value="ADSL">ADSL</OPTION>
> > <OPTION value="SDSL">SDSL</OPTION>
> > <OPTION value="CABLE MODEM">CABLE
> MODEM</OPTION>
> > <OPTION value="T1">T1</OPTION>
> > </SELECT></FONT></TD>
> > <TD><FONT face="Verdana">&nbsp; </FONT>
> > </TD>
> > <TD vAlign="top" width="349"><FONT
> > face="Verdana"><STRONG><FONT color="#0099ff" size="2">PROCESSOR:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorprocessor" runat="server" ErrorMessage="Enter
> > Processor"
> >
> > ControlToValidate="processor"></asp:RequiredFieldValidator>
> > </FONT><FONT color="#ff0000" size="2">
> > <BR>
> > </FONT></STRONG>&nbsp;<INPUT id="processor"
> > type="text" maxLength="45" size="44" value="AMD" name="processor"
> > runat="server"></FONT></TD>
> > </TR>
> > <TR>
> > <TD><FONT face="Verdana">&nbsp; </FONT>
> > </TD>
> > <TD>&nbsp;</TD>
> > <TD width="349">&nbsp;</TD>
> > </TR>
> > <TR>
> > <TD vAlign="top"><FONT face="Verdana"><FONT
> > size="2"><FONT color="#0099ff"><STRONG>VIDEO CARD:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorvideocard" runat="server" ErrorMessage="Enter
> > video card"
> >
> >
> ControlToValidate="videocard"></asp:RequiredFieldValidator></STRONG></FONT><
> BR>
> > </FONT><INPUT id="videocard" type="text"
> > maxLength="45" size="38" value="Radeon" name="videocard"
> > runat="server"><br>
> > &nbsp;</FONT></TD>
> > <TD>&nbsp;</TD>
> > <TD vAlign="top" width="349"><FONT
> > face="Verdana"><FONT color="#0099ff" size="2"><STRONG>SOUND
> > CARD:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorsoundcard" runat="server" ErrorMessage="Enter
> > sound card"
> >
> >
> ControlToValidate="soundcard"></asp:RequiredFieldValidator></STRONG></FONT><
> BR>
> > &nbsp;<INPUT id="soundcard" type="text"
> > maxLength="45" size="45" value="Sound Blaster Compatible"
> > name="soundcard" runat="server"><br>
> > &nbsp;</FONT></TD>
> > </TR>
> > <TR>
> > <TD vAlign="top">&nbsp;
> > </TD>
> > <TD>&nbsp;</TD>
> > <TD vAlign="top" width="349">&nbsp;
> > </TD>
> > </TR>
> > <TR>
> > <TD vAlign="top"><FONT face="Verdana"
> size="2"><FONT
> > color="#0099ff" size="2"><STRONG>RAM:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorram" runat="server" ErrorMessage="Enter Ram"
> >
> ControlToValidate="ram"></asp:RequiredFieldValidator></STRONG></FONT><BR>
> > &nbsp;<INPUT id="ram" type="text" maxLength="45"
> > size="37" value="2MB" name="ram" runat="server"></FONT></TD>
> > <TD>&nbsp;</TD>
> > <TD vAlign="top" width="349"><FONT face="Verdana"
> > size="2"><FONT color="#0099ff" size="2"><STRONG>HARD
> > DRIVE:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorharddrive" runat="server" ErrorMessage="Enter
> > hard
> > drive"
> >
> >
> ControlToValidate="harddrive"></asp:RequiredFieldValidator></STRONG></FONT><
> BR>
> > &nbsp;<INPUT id="harddrive" type="text"
> > maxLength="45" size="45" value="1GB" name="harddrive"
> > runat="server"><br>
> > &nbsp;</FONT></TD>
> > </TR>
> > </TABLE>
> > <P><FONT face="Verdana"><STRONG><FONT
> > color="#00ff00"><BR>
> > </FONT><FONT color="#0099ff">ADDITIONAL SYSTEM
> > INFORMATION:
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatoradditionalsysteminformation" runat="server"
> > ErrorMessage="Enter system information"
> >
> >
> ControlToValidate="additionalsysteminformation"></asp:RequiredFieldValidator
> ></FONT></STRONG><BR>
> > This is basically anything else you want on your
> web
> > page. You can fill it with
> > pages of text if you want. Make sure you run a
> spell
> > check on it first :)<BR>
> > &nbsp;<TEXTAREA id="additionalsysteminformation"
> > name="additionalsysteminformation" rows="12" wrap="true"
> > cols="76" runat="server" bio="post" style="WIDTH:
> > 632px; HEIGHT: 198px">Erase this text and put yours in.</TEXTAREA><BR>
> > <BR>
> > </FONT><FONT face="Verdana" size="2">
> > <BR>
> > </FONT><FONT face="Verdana"><STRONG><FONT
> > color="#0099ff">SYSTEM PHOTO:&nbsp;
> > <asp:RequiredFieldValidator
> > id="RequiredFieldValidatorSystemPhoto" runat="server"
> ErrorMessage="Enter
>
> > System Photo"
> >
> >
> ControlToValidate="SystemPhoto"></asp:RequiredFieldValidator></FONT></STRONG
> ><BR>
> > This is a photo of your Computer System. If you
> have
> > a
> > photo on the net and
> > want to use that paste the url into the box below.
> If
> > you do not have a photo
> > at this time then you can leave in the default
> photo
> > already in the box. If you
> > take out the link below without putting in a link
> to
> > another photo your profile
> > will have no photo and look like crap. So either
> have
> > a photo or leave the one
> > that is in there alone. <FONT color="#ff0000"
> > size="2">This is a 200x 200 image.</FONT></FONT><FONT face="Verdana"
> > size="2"><BR>
> > <INPUT id="SystemPhoto" type="text"
> maxLength="100"
>
> > size="101" value="Images/SystemInformation.gif"
> > name="SystemPhoto" runat="server" style="WIDTH:
> > 640px; HEIGHT: 22px"><BR>
> > </FONT><FONT face="Verdana">
> > <BR>
> > <BR>
> > <INPUT id="Submit1" type="submit" value="Join the
> > Belching Toad Clan" name="B1" runat="server"><BR>
> > Click on this button to send your information to
> the
> > database and become a
> > member of BTC. If you have missed anything or made
> a
> > mistake it will be shown
> > in red at the point you made the mistake. If you
> have
> > any problems then contact
> > me at <a
> > href="mailto:BelchermanBTC@...?subject=Problem with
> Join
>
> > BTC Application">
> > BelchermanBTC@...</a> with the
> > issue
> > and I will try to
> > help. Welcome to the clan and have fun.<BR>
> > &nbsp;</FONT></P>
> > </FORM>
> >
> >
> >
> > ________________________________
> > Yahoo! Groups Links
> >
> > To visit your group on the web, go to:
> > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
> >
> > To unsubscribe from this group, send an email to:
> > AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
> This communication, including attachments, is for the exclusive use of
> addressee and may contain proprietary, confidential or privileged
> information. If you are not the intended recipient, any use, copying,
> disclosure, dissemination or distribution is strictly prohibited. If
> you are not the intended recipient, please notify the sender
> immediately by return email and delete this communication and destroy all
> copies.
>
>
> ________________________________
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
>
> To unsubscribe from this group, send an email to:
> AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Reply with quote
Send private message
Post new topic Reply to topic
Display posts from previous:   
 

All times are GMT
Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Freelace Website Designer - Customer web design and software building.
Booking Calendar - reservation calendar script
Land Surveying - total station instruments and equipments
China Wholesale - Electronics Products
Character Studio - Tutorials and Help