?? samplekeyprovider.cs.txt
字號:
// *******************************************************************************************
//
// Ajax.NET Professional - The free AJAX implementation for the Microsoft.NET Framework
//
// Copyright (C) 2005 Michael Schwarz, info@schwarz-interactive.de
//
// *******************************************************************************************
using System;
namespace AjaxProSample
{
public class SampleKeyProvider : AjaxPro.IAjaxKeyProvider
{
#region IAjaxKeyProvider Members
public string Key
{
get
{
return System.Web.HttpContext.Current.Request.UserHostAddress;
}
}
public string ClientScript
{
get
{
string s = "AjaxPro.key = \"" + System.Web.HttpContext.Current.Request.UserHostAddress + "\";\r\n";
return s;
}
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -