Jump to content

how can I pass a value to another page


vadder85

Recommended Posts

if you have

<form runat="server" method="post" action="yourOtherPage.aspx"><asp:TextBox id="txtBox" runat="server"/></form>

Then on yourOtherPage.aspx you can get the values like thisC#

Request.QueryString["txtBox"];

VB

Request.QueryString("txtBox")

This si pretty basic stuff, have you read the tutorial?

Link to comment
Share on other sites

if you have
<form runat="server" method="post" action="yourOtherPage.aspx"><asp:TextBox id="txtBox" runat="server"/></form>

Then on yourOtherPage.aspx you can get the values like thisC#

Request.QueryString["txtBox"];

VB

Request.QueryString("txtBox")

This si pretty basic stuff, have you read the tutorial?

yeah,I know..but I'm dealing with .NET mobile..not the normal one..quite hard to find the resources.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...