i use server.transfer at the begining it works perfectly. but then i add another language to my site and i try to do it but it fails with the new language
my code is below
if (Request.RawUrl.Contains("/tr/"))
{
Server.Transfer("tr/" + dt.Rows[0]["SourceURL"].ToString());
}
else if (Request.RawUrl.Contains("/en/"))
{
Server.Transfer("en/" + dt.Rows[0]["SourceURL"].ToString());
}
the "tr" transfers work superb but en fails it stays on my pagenotfound and not transfer to the destination url. i also check to write the whole url like http://mysite.com/en/test.aspx?k=13 and it also works but when server.transfer it fails
can anybody say why?
thanks