clientscriptwrapper.cs
来自「Freetextbox是优秀的在线编辑器」· CS 代码 · 共 22 行
CS
22 行
namespace FreeTextBoxControls.Support
{
using FreeTextBoxControls;
using System;
using System.Web.UI;
public class ClientScriptWrapper
{
public static string GetWebResourceUrl(Control control, string resourceName)
{
return control.Page.ClientScript.GetWebResourceUrl(typeof(FreeTextBox), resourceName);
}
public static string GetWebResourceUrl(Control control, string resourceName, string assemblyResourceHandlerPath)
{
return control.Page.ClientScript.GetWebResourceUrl(typeof(FreeTextBox), resourceName);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?