-- Front-end
CopyCode The Code is as follows: <% @ page Language = "C #" autoeventwireup = "true" codefile = "successed. aspx. cs" inherits = "biz_order_successed" %>
the system will switch to the browser page in five seconds
-- BackgroundCopy codeThe Code is as follows: using system;
Using system. Collections. Generic;
Using system. LINQ;
Using system. Web;
Using system. Web. UI;
Using system. Web. UI. webcontrols;
Using hyisoft. webutility;
Public partial class biz_order_successed: system. Web. UI. Page
{
Protected void page_load (Object sender, eventargs E)
{
String message = string. empty;
String url = string. empty;
Url = utility. Request ("url ");
Message = utility. Request ("message ");
Lbmessage. Text = message;
Hrefurl. href = URL;
Hrefurl. innertext = "manual page navigation ";
String strredirectpage = URL;
String strredirecttime = "5 ";
String strredirect = string. Format ("{0}; url = {1}", strredirecttime, strredirectpage );
Response. addheader ("refresh", strredirect );
}
}