Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Pass a parameter to a web page
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00706369
Message ID:
00706468
Views:
15
>David,
>
>I'm asking if I can pass a parameter to an ASPX page.
>
>Doug

yes, just put it in the url querystring. mypage.aspx?title=Welcome. Just be aware that you wont be able to render it into the TITLE tag with codebehind. You can get access to it with something like
' Get TabIndex from querystring
If Not (Request.Params("tabindex") Is Nothing) Then
      tabIndex = Int32.Parse(Request.Params("tabindex"))
End If
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform