views:

20

answers:

1

i have this querystring that shall open up my page. http://www.a1-one.com/[email protected]&stuid=123456

Now when this page loads, on page_load, I want to pick up email and stuid in two different variables. So I can use them to insert into my database (sql server) how can this be done in vb.net

+2  A: 

Use Request.QueryString("email") and Request.QueryString("stuid").

Mark Byers