csharp 在asp.net webforms中注入服务器端的客户端脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 在asp.net webforms中注入服务器端的客户端脚本相关的知识,希望对你有一定的参考价值。

Page page = HttpContext.Current.CurrentHandler as Page;

String jscript = "window.open('https://google.com', '_blank')";

ClientScriptManager csm = page.ClientScript;
 
csm.RegisterStartupScript(page.GetType(), "salesforcescript", jscript,true);
Page page = HttpContext.Current.CurrentHandler as Page;

String jscript = "window.open('https://google.com', '_blank')";

Control control = page.FindControl("clientid of control");

ScriptManager.RegisterClientScriptBlock(control, control.GetType(), "whatever", jscript, true);
//we can also use ScriptManager.RegisterStartupScript() 

以上是关于csharp 在asp.net webforms中注入服务器端的客户端脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ASP.NET WebForms 中触发模式窗口?

ASP.Net WebForms + Paypal 表单

浅析ASP.NET Webform和ASP.NET MVC

在 asp net 框架(webforms)中使用 microsoft api 登录

如何在asp.net C# Webform中制作像网格一样的Excel

在 ASP.NET Webform 中扩展 DropDownList