using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class img404 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //if (lang.language == 1) { //https://enimg.bio-protocol.org/img404.aspx?404;https://enimg.bio-protocol.org:443/jj.png string wangzhi = Request.Url.ToString().ToLower(); //"?404;https://enimg.bio-protocol.org:443/" string tempsrt = "?404;" + UrlSetting.ImgSrcURI443(); string[] wzlist = wangzhi.Replace(tempsrt, "▒").Split('▒'); if (wzlist.Length > 1) { if (wzlist[1].IndexOf("?") > 0) { if (wzlist[1].IndexOf("nofound=1") > 0) { Response.Redirect(UrlSetting.WebSiteURI() + wzlist[1].Replace("nofound=1", "nofound=11")); } else { Response.Redirect(UrlSetting.WebSiteURI() + wzlist[1] + "&nofound=1"); } } else { Response.Redirect(UrlSetting.WebSiteURI() + wzlist[1] + "?nofound=1"); } } } } }