1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Web.SessionState; public class JScript { protected static HttpResponse Response; protected static HttpSessionState Session; public JScript() { // // TODO: 在此处添加构造函数逻辑 // } public static void AlertAndRedirect(string message,string toURL) { string js = "<script language=javascript>alert('{0}');window.location.replace('{1}')</script>"; HttpContext.Current.Response.Write(string.Format(js,message ,toURL)); } public static void JscriptSender(System.Web.UI.Page page) { page.RegisterHiddenField("__EVENTTARGET",""); page.RegisterHiddenField("__EVENTARGUMENT",""); string s = @"<script language=Javascript> function KendoPostBack(eventTarget, eventArgument) { var theform = document.forms[0]; theform.__EVENTTARGET.value = eventTarget; theform.__EVENTARGUMENT.value = eventArgument; theform.submit(); } </script>"; page.RegisterStartupScript("sds",s); } public static void Alert(string message) { message = StringUtil.DeleteUnVisibleChar(message); string js=@"<Script language='JavaScript'> alert('"+ message +"');</Script>"; HttpContext.Current.Response.Write(js); } public static void Alert(object message) { string js=@"<Script language='JavaScript'> alert('{0}'); </Script>"; HttpContext.Current.Response.Write(string.Format(js,message.ToString())); } public static void RtnRltMsgbox(object message,string strWinCtrl) { string js = @"<Script language='JavaScript'> strWinCtrl = true; strWinCtrl = if(!confirm('"+ message +"'))return false;</Script>"; HttpContext.Current.Response.Write(string.Format(js,message.ToString())); } public static void GoHistory(int value) { string js=@"<Script language='JavaScript'> history.go({0}); </Script>"; HttpContext.Current.Response.Write(string.Format(js,value)); } public static void CloseWindow() { string js=@"<Script language='JavaScript'> window.close(); </Script>"; HttpContext.Current.Response.Write(js); HttpContext.Current.Response.End(); } public static void RefreshParent() { string js=@"<Script language='JavaScript'> parent.location.reload(); </Script>"; HttpContext.Current.Response.Write(js); } public static string JSStringFormat(string s) { return s.Replace("\r","\\r").Replace("\n","\\n").Replace("'","\\'").Replace("\"","\\\""); } public static void RefreshOpener() { string js=@"<Script language='JavaScript'> opener.location.reload(); </Script>"; HttpContext.Current.Response.Write(js); } public static void OpenWebForm(string url) { /*开始*/ string js=@"<Script language='JavaScript'> //window.open('"+url+@"'); window.open('"+url+@"','','height=0,width=0,top=0,left=0,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no'); </Script>"; /*结束*/ /*…………………………………………………………………………………………*/ HttpContext.Current.Response.Write(js); } public static void OpenWebForm(string url,string name,string future) { string js=@"<Script language='JavaScript'> window.open('"+url+@"','"+name+@"','"+future+@"') </Script>"; HttpContext.Current.Response.Write(js); } public static void OpenWebForm(string url,string formName) { /*注释内容: */ /*开始*/ string js=@"<Script language='JavaScript'> //window.open('"+url+@"','"+formName+@"'); window.open('"+url+@"','"+formName+@"','height=0,width=0,top=0,left=0,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no'); </Script>"; /*结束*/ /*…………………………………………………………………………………………*/ HttpContext.Current.Response.Write(js); } public static void OpenWebForm(string url,bool isFullScreen) { string js=@"<Script language='JavaScript'>"; if(isFullScreen) { js+="var iWidth = 0;"; js+="var iHeight = 0;"; js+="iWidth=window.screen.availWidth-10;"; js+="iHeight=window.screen.availHeight-50;"; js+="var szFeatures ='width=' + iWidth + ',height=' + iHeight + ',top=0,left=0,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no';"; js+="window.open('"+url+@"','',szFeatures);"; } else { js+="window.open('"+url+@"','','height=0,width=0,top=0,left=0,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no');"; } js+="</Script>"; HttpContext.Current.Response.Write(js); } public static void JavaScriptLocationHref(string url) { string js=@"<Script language='JavaScript'> window.location.replace('{0}'); </Script>"; js=string.Format(js,url); HttpContext.Current.Response.Write(js); } public static void JavaScriptFrameHref(string FrameName,string url) { string js=@"<Script language='JavaScript'> @obj.location.replace(""{0}""); </Script>"; js = js.Replace("@obj",FrameName ); js=string.Format(js,url); HttpContext.Current.Response.Write(js); } public static void JavaScriptResetPage(string strRows) { string js=@"<Script language='JavaScript'> window.parent.CenterFrame.rows='"+strRows+"';</Script>"; HttpContext.Current.Response.Write(js); } public static void JavaScriptSetCookie(string strName,string strValue) { string js=@"<script language=Javascript> var the_cookie = '"+strName+"="+strValue+@"' var dateexpire = 'Tuesday, 01-Dec-2020 12:00:00 GMT'; document.cookie = the_cookie + '; expires='+dateexpire; </script>"; HttpContext.Current.Response.Write(js); } public static void GotoParentWindow(string parentWindowUrl) { string js=@"<Script language='JavaScript'> this.parent.location.replace('"+parentWindowUrl+"');</Script>"; HttpContext.Current.Response.Write(js); } public static void ReplaceParentWindow(string parentWindowUrl,string caption,string future) { string js=""; if(future!=null&&future.Trim()!="") { js=@"<script language=javascript>this.parent.location.replace('"+parentWindowUrl+"','"+caption+"','"+future+"');</script>"; } else { js=@"<script language=javascript>var iWidth = 0 ;var iHeight = 0 ;iWidth=window.screen.availWidth-10;iHeight=window.screen.availHeight-50; var szFeatures = 'dialogWidth:'+iWidth+';dialogHeight:'+iHeight+';dialogLeft:0px;dialogTop:0px;center:yes;help=no;resizable:on;status:on;scroll=yes';this.parent.location.replace('"+parentWindowUrl+"','"+caption+"',szFeatures);</script>"; } HttpContext.Current.Response.Write(js); } public static void ReplaceOpenerWindow(string openerWindowUrl) { string js=@"<Script language='JavaScript'> window.opener.location.replace('"+openerWindowUrl+"');</Script>"; HttpContext.Current.Response.Write(js); } public static void ReplaceOpenerParentFrame(string frameName,string frameWindowUrl) { string js=@"<Script language='JavaScript'> window.opener.parent." + frameName + ".location.replace('"+frameWindowUrl+"');</Script>"; HttpContext.Current.Response.Write(js); } public static void ReplaceOpenerParentWindow(string openerParentWindowUrl) { string js=@"<Script language='JavaScript'> window.opener.parent.location.replace('"+openerParentWindowUrl+"');</Script>"; HttpContext.Current.Response.Write(js); } public static void CloseParentWindow() { string js=@"<Script language='JavaScript'> window.parent.close(); </Script>"; HttpContext.Current.Response.Write(js); } public static void CloseOpenerWindow() { string js=@"<Script language='JavaScript'> window.opener.close(); </Script>"; HttpContext.Current.Response.Write(js); } public static string ShowModalDialogJavascript(string webFormUrl) { string js=@"<script language=javascript> var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = 'dialogWidth:'+iWidth+';dialogHeight:'+iHeight+';dialogLeft:0px;dialogTop:0px;center:yes;help=no;resizable:on;status:on;scroll=yes'; showModalDialog('"+webFormUrl+"','',szFeatures);</script>"; return js; } public static string ShowModalDialogJavascript(string webFormUrl,string features) { string js=@"<script language=javascript> showModalDialog('"+webFormUrl+"','','"+features+"');</script>"; return js; } public static void ShowModalDialogWindow(string webFormUrl) { string js=ShowModalDialogJavascript(webFormUrl); HttpContext.Current.Response.Write(js); } public static void ShowModalDialogWindow(string webFormUrl,string features) { string js=ShowModalDialogJavascript(webFormUrl,features); HttpContext.Current.Response.Write(js); } public static void ShowModalDialogWindow(string webFormUrl,int width,int height,int top,int left) { string features = "dialogWidth:"+width.ToString() + "px" +";dialogHeight:" + height.ToString() + "px" +";dialogLeft:" + left.ToString() + "px" +";dialogTop:" + top.ToString() + "px" +";center:yes;help=no;resizable:no;status:no;scroll=no"; ShowModalDialogWindow(webFormUrl,features); } public static void SetHtmlElementValue(string formName,string elementName,string elementValue) { string js=@"<Script language='JavaScript'>if(document."+formName+"." + elementName +"!=null){document."+formName+"." + elementName +".value ="+ elementValue +";}</Script>"; HttpContext.Current.Response.Write(js); } public static void CheckSession(string SessionName, string Message, string RedirectUrl) { Session = HttpContext.Current.Session; Response = HttpContext.Current.Response; if (Session[SessionName] == null) { WriteMessage(Message, false, false); string js = "top.document.location='" + RedirectUrl + "';"; WriteJavaScript(js); ; } } public static void WriteMessage(string strMsg, bool Back, bool End) { Response = HttpContext.Current.Response; strMsg = strMsg.Replace("'", "“"); strMsg = strMsg.Replace("\r\n", ""); Response.Write("<script language=javascript>alert('" + strMsg + "');</script>"); if (Back) Response.Write("<script language=javascript>history.back();</script>"); if (End) Response.End(); } public static void WriteJavaScript(string strJavaScript) { Response = HttpContext.Current.Response; Response.Write("<script language=javascript>" + strJavaScript + "</script>"); } } |