asp.net - Redirect other project page under same solution -


i have web application. in application there 7 projects under same solution. how redirect project page-1 project b page-1.

i have tried with

response.redirect("http://localhost:20431/admin/admin_home.aspx"); 

but not working please me.

thanks gulrej

the redirect method knows difference between absolute , relative paths. if "other page" within same domain use relative path. if it's not within same domain use absolute path.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -