mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
fix bug
This commit is contained in:
parent
c7acca904a
commit
8397786566
@ -81,7 +81,14 @@ namespace OpenAuth.App.Response
|
||||
/// </summary>
|
||||
public string HtmlWithCanWriteIds
|
||||
{
|
||||
get { return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds); }
|
||||
get
|
||||
{
|
||||
if (this.FrmType != 0) //只有开原版动态表单才需要转换
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user