📄 servicepathconverter.cs
字号:
// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
using System;
using System.ComponentModel;
using System.Web.UI;
using System.Web;
namespace AjaxControlToolkit
{
public class ServicePathConverter : StringConverter
{
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
{
if (destinationType == typeof(string))
{
string strValue = (string)value;
if (string.IsNullOrEmpty(strValue))
{
HttpContext currentContext = HttpContext.Current;
if (currentContext != null)
{
return currentContext.Request.FilePath;
}
}
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -