settinghtml.ascx.cs
来自「如果不使用IIS,请先运行 XSP.exe,待提示已侦听 8080端口后」· CS 代码 · 共 30 行
CS
30 行
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
public partial class DesktopModules_HTML_settinghtml : DNNLite.Entites.Modules.PortalModuleSettingsBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
public override System.Collections.Generic.IDictionary<string, string> GetToSaveSettings()
{
//throw new NotImplementedException();
System.Collections.Generic.Dictionary<string, string> r = new System.Collections.Generic.Dictionary<string, string>();
return r;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?