我有一个简单的SharePoint 2013 webpart,只需使用marquee标记滚动文本。我在配置部分有一个个性化部分:要滚动的文本。问题是,如何从那里获取属性值到我的asp部分?我似乎无法在那里得到任何东西,并且Intellisense中没有任何东西出现。这是该属性的C#代码:
protected string text;
[Personalizable(PersonalizationScope.Shared), WebBrowsable(true),
WebDisplayName("Text To Display"),
WebDescription("The Text you want to scroll across the screen")]
public string ScrollingText
{
get
{
return text;
}
set
{
text = value;
}
}
这是我最后一次尝试的asp文本:
<marquee behavior="scroll" direction="left"><%this.ScrollingText;%></marquee>
除了在智能感知中不可用之外,我得到一个&#34;唯一的赋值,调用,递增,递减,等待和新对象表达式可以用作语句。 ScrollingText.ascx.g.cs上的错误