Live Chat Icon For mobile
Live Chat Icon

Is it possible to pass a querystring from an .asp page to aspx page?

Platform: ASP.NET| Category: Basic

Yes you can pass querystring from .asp to ASP.NET page

.asp


<%response.redirect 'webform1.aspx?id=11'%>

.aspx

VB.NET


Response.Write (Request('id').ToString ())

C#


Response.Write (Request['id'].ToString ());

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.