Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Pass a parameter to a web page
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00706369
Message ID:
00706468
Vues:
16
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform