主頁 > 知識庫 > aspx不顯示ViewState的實(shí)例

aspx不顯示ViewState的實(shí)例

熱門標(biāo)簽:百度地圖標(biāo)注點(diǎn)擊事件 怎樣在地圖標(biāo)注消火栓圖形 泰州手機(jī)外呼系統(tǒng)軟件 內(nèi)蒙古智能電銷機(jī)器人哪家強(qiáng) 杭州智能電話機(jī)器人 地圖標(biāo)注位置多的錢 廈門四川外呼系統(tǒng) 濟(jì)源人工智能電話機(jī)器人價格 山東防封電銷卡辦理套餐
復(fù)制代碼 代碼如下:

System.IO.StringWriter html = new System.IO.StringWriter();
             System.Web.UI.HtmlTextWriter tw = new System.Web.UI.HtmlTextWriter(html);
             base.Render(tw);
             string Temp = html.ToString();
             string s1 = string.Empty, s2 = string.Empty, s3 = string.Empty, s4 = string.Empty, s5 = string.Empty, s6 = string.Empty;
             int i = 0;
             int j = 0;

             i = Temp.IndexOf("form");
             if (i > 0)
             {
                 j = Temp.IndexOf(">", i);
                 s1 = Temp.Substring(0, i);
                 s2 = Temp.Substring(j + 1, Temp.Length - j - 1);
             }

             i = s2.IndexOf("input type=\"hidden\" name=\"__VIEWSTATE\" id=\"__VIEWSTATE\"");
             if (i > 0)
             {
                 j = s2.IndexOf(">", i);
                 s3 = s2.Substring(0, i);
                 s4 = s2.Substring(j + 1, s2.Length - j - 1);
             }

             i = s4.IndexOf("input type=\"hidden\" name=\"__EVENTVALIDATION\" id=\"__EVENTVALIDATION\"");
             if (i > 0)
             {
                 j = s4.IndexOf(">", i);
                 s5 = s4.Substring(0, i);
                 s6 = s4.Substring(j + 1, s4.Length - j - 1);
                 Temp = s1 + s3 + s5 + s6;
             }
             else
             {
                Temp = s1 + s3 + s4;
             }
             Temp = Temp.Replace("/form>", "");
             Temp = Temp.Replace("\r\n", "");
             tw.Close();
             Response.Write(Temp);            
您可能感興趣的文章:
  • 禁止ViewState的3種解決方法
  • asp.net 禁用viewstate在web.config里
  • asp.net 去除viewstate

標(biāo)簽:臺州 朔州 新鄉(xiāng) 洛陽 朝陽 喀什 周口 百色

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《aspx不顯示ViewState的實(shí)例》,本文關(guān)鍵詞  aspx,不,顯示,ViewState,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《aspx不顯示ViewState的實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于aspx不顯示ViewState的實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章