-1

伪代码:

  1. 声明一个变量
  2. 将返回 url 存储在该变量中。
  3. 如果变量不等于 null 重定向到 returnurl
    否则重定向到主页。

有人可以给我上面提到的伪代码的 C# asp .net 代码,因为我对编程世界完全陌生???

4

1 回答 1

0
   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

}

试试这个,让我现在。这会有所帮助

于 2013-08-08T07:42:43.020 回答