Hi,
I am trying to somehow use a module to allow users to share website links. This modules take the query in the URL like
http://www.yourdomain.com/tabid/106/Default.aspx?MyLinksTitle=NewTitleTest&MyLinksURL=http://www.OnyakTech.com
f the user is already logged in and i navigate to this page then its working fine. But if the user is not logged in and i try to navigate to this page then the login page appers (as this page is intentionally for registered users only).
The URL become this
http://www.yourdomain.com/MyLinks/tabid/118/ctl/Login/Default.aspx?returnurl=%2fMyLinks%2ftabid%2f118%2fDefault.aspx%3fMyLinksTitle%3darboo%26MyLinksURL%3dhttp%3a%2f%2fwww.youtube.com
When i give my credientials and login to website, it logged me in and navigate to this URL
http://www.nixielife.com/MyLinks/tabid/118/Default.aspx
The login module removes the parameter part ?MyLinksTitle=NewTitleTest&MyLinksURL=http://www.OnyakTech.com
:(
How i can maintain that parameter part after login too ?
Please help!