1) In my Controller action, I am going to Redirect user to some random generated url, which is working fine.
But now I want to accompany some memberId with these Redirect url request.
I can't add the memberId in query string as with these url as I don't what this url will be. So something like I add this memberId in Request object.
2) Now thses random generated Url point to my other MVC based application. So once I receive the above request with the memberId, I want to set the cookie of current user as that memberId
gurunguns
Member
72 Points
209 Posts
Update cookie on all MVC request containing some querystring?
Jan 23, 2013 08:59 AM|LINK
My problem has two parts:
1) In my Controller action, I am going to Redirect user to some random generated url, which is working fine.
But now I want to accompany some memberId with these Redirect url request.
I can't add the memberId in query string as with these url as I don't what this url will be. So something like I add this memberId in Request object.
2) Now thses random generated Url point to my other MVC based application. So once I receive the above request with the memberId, I want to set the cookie of current user as that memberId
Save Green.