Forum Moderators: open

Message Too Old, No Replies

need to know how to get info from a webpage to a .net form

first project in .NET

         

mavrick

12:07 pm on Apr 29, 2004 (gmt 0)

10+ Year Member



hi guys

just started .net. got my first project. i need to get the info from webpage to a .net form. this works on web page using asp, not sure about how to do it using .net. need to use Request.QueryString. but .net doe not have it maybe, not sure

HELP!

korkus2000

3:04 pm on Apr 29, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



try this:

Request.QueryString["string name of querystring id"].ToString();

Is this VB or C#. You may also want to put an if statement that uses the
Request.QueryString.HasKeys() method to see if there is a querystring. I don't know the VB method syntax though if you are using VB.