Luk
Luk

Reputation: 55

Get two value and pass to next page at same time

How do i put this two together , could i get sessionid and objectid and the same time?

<% mLink = "rec_edit.asp?ObjectID=" & mObjectID %>   

<% mLink = "rec_edit.asp?sessionid=" & request("sessionid") %>

Upvotes: 0

Views: 53

Answers (1)

Rich
Rich

Reputation: 375

Like so:

<% mLink = "rec_edit.asp?ObjectID=" & mObjectID & "&sessionid=" & Session.SessionID %>

Upvotes: 2

Related Questions