I got this code in LinkButton Click event
Session("Factor") = Session("rating")
Response.Write("<script>")
Response.Write("window.open('Resources/Resources.aspx','_blank')")
Response.Write("</script>")
The reason I need in code behind is because I have to set that session. This opens in new window. But how can I make it open in a new tab? or any alternative approach. Please remember I have to set that session. QueryString not good for me.
Thanks,