Groups | Blog | Home
all groups > asp.net mobile > july 2006 >

asp.net mobile : RedirectToMobilePage problem


riza
7/14/2006 10:26:04 AM
hi guys, i wish to bring over two variables from one web form to another..
any idea how i do that?

RedirectToMobilePage("combo/halalCombo.aspx?strname=" & lbl_cuisine.Text)

that is for 1 variable. how about 2?

need urgent help. thanks loads in advance.

Dusan Zupancic
7/17/2006 5:47:56 PM
Generaly you can separate variables in URL with & sign, for example:
http:/somwhere.com/test.aspx?first=1&second=2

So, try with something like this:
RedirectToMobilePage("combo/halalCombo.aspx?strname=" & lbl_cuisine.Text &
"&secondVariable=" & lbl_second.Text)

[quoted text, click to view]
AddThis Social Bookmark Button