passing in parameters

  • Thread starter Thread starter Tommy
  • Start date Start date
T

Tommy

i'm new to asp.net, and i need to create a link in an email that will
pass to a web page the email address as a parameter. I'm not sure how
to grab the parameter from the web page? thanks!
 
thanks for the help, but i'm getting an error with
Request.QueryString("email");
QueryString is underlined in blue and it says denotes a property where a
method was expected?
 
my bad... mixing ASP and ASP.NET again... [] not ()

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com


bruce barker said:
in c# its:

string Email = Request.QueryString["email"];


Tommy said:
thanks for the help, but i'm getting an error with
Request.QueryString("email");
QueryString is underlined in blue and it says denotes a property where a
method was expected?
 
Back
Top