Reputation: 55
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
Reputation: 375
Like so:
<% mLink = "rec_edit.asp?ObjectID=" & mObjectID & "&sessionid=" & Session.SessionID %>
Upvotes: 2