?? resource.aspx.cs
字號:
?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;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Deliver_Click(object sender,EventArgs e)
{ ///使用Application對象存儲數據
Application.Lock();
Application["Application"] = AppData.Text;
Application.UnLock();
///使用Session對象存儲數據
Session["Session"] = SesData.Text;
///跳轉到頁面Direct.aspx
Response.Redirect("Direct.aspx");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -