伪代码:
- 声明一个变量
- 将返回 url 存储在该变量中。
- 如果变量不等于 null 重定向到 returnurl
否则重定向到主页。
有人可以给我上面提到的伪代码的 C# asp .net 代码,因为我对编程世界完全陌生???
伪代码:
有人可以给我上面提到的伪代码的 C# asp .net 代码,因为我对编程世界完全陌生???
string url="http://www.google.co.in/?gws_rd=cr" // variable declaration and assigning url to variable
if(url !="") // checking the string variable is empty or not
{
Response.Redirect(url); // variable is not empty redirect to given URL
}
else
{
Response.Redirect(HOMEPAGE URL); // else redirect to given home page
}
试试这个,让我现在。这会有所帮助