开发者

get data from a querystring

开发者 https://www.devze.com 2022-12-31 15:15 出处:网络
i have this querystring that shall open up my page. http://www.a1-one.com/newpage.aspx?email=er@old.com&stuid=123456

i have this querystring that shall open up my page. http://www.a1-one.com/newpage.aspx?email=er@old.com&stuid=123456

Now when this page loads, on page_lo开发者_开发知识库ad, 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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消