⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samplekeyprovider.cs.txt

📁 ajax是未来之星
💻 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 + -