本文整理匯總了C#中System.Web.UI.UrlPropertyAttribute類的典型用法代碼示例。如果您正苦於以下問題:C# UrlPropertyAttribute類的具體用法?C# UrlPropertyAttribute怎麽用?C# UrlPropertyAttribute使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
UrlPropertyAttribute類屬於System.Web.UI命名空間,在下文中一共展示了UrlPropertyAttribute類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CustomHyperLinkControl
public class CustomHyperLinkControl : WebControl
{
public CustomHyperLinkControl() { }
// The TargetUrl property represents the URL that
// the custom hyperlink control navigates to.
[UrlProperty("*.aspx")]
public string TargetUrl
{
get
{
string s = (string)ViewState["TargetUrl"];
return ((s == null) ? String.Empty : s);
}
set
{
ViewState["TargetUrl"] = value;
}
}
// The Text property represents the visible text that
// the custom hyperlink control is displayed with.
public virtual string Text
{
get
{
string s = (string)ViewState["Text"];
return ((s == null) ? String.Empty : s);
}
set
{
ViewState["Text"] = value;
}
}
// Implement method to render the control.
}