How can i send more than one parameter from one page to another?
its like
NewPage.aspx?para1=value1 para2=value2

How can i combine the 2 parameters
thanks for the help in advance

Recommended Answers

All 2 Replies

just add & sign between the name-value pairs like this : newpage.aspx?para1=value1&para2=value2

Or, you can just use one parameter and use a separator for yourself. Then when you retrieve the querystring, you can do a split and put it into an array:

mypage.aspx?param1=value-valuetwo-valuethree

Nextpage:
Dim qstring As String = Trim(Request.QueryString("param1"))
Dim arr() As String = qstring.split("-")
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.