How can I tranfer values from this mobile page to another mobile page when I click a command button or a hyperlinks
(How can I submit values from a mobile page to another mobile page in .NET?)
Thank you.
If you want a safer way to do this is using Session vars example:
form1.aspx
Session("userid")= value
me.mobilepageredirect("form2.aspx")
to use it in form2.aspx
dim User as string = Session("userid")