I have a asp.net application that i use for traffic tracking.
I get a incoming visitor from several source websites and redirect the visitor to the target website using Response.Redirect(url);
The problem is that currently the referer shown to the target website (after i redirect) is of the url of the source website and not my website.
how do i clear/change the referer before using the Response.Redirect?
This is my code of Default.aspx:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
try
{
Response.Redirect(url);
}
catch (System.Threading.ThreadAbortException) { }
}
}
Thanks.