我有一个文件Approval.aspx
这是代码
<asp:MenuItem Text="Attachments" Value="Attachments"
NavigateUrl="PropertyInfo.aspx"></asp:MenuItem>
在相应的Approval.aspx.cs文件中
我有以下代码
protected String AfeAttachment
{
get { return String.Format("{0}/{1}?txtAFENumber={2}", mod.BaseURL, "AFEWellFileAttachment.aspx", afeNumber); }
}
我希望将其设置为AFEattachment的结果,而不是将导航网址设置为propertyinfo.aspx。
我该怎么做?
答案 0 :(得分:0)
在Page_Load事件中设置NavigateUrl,即
Menu1.Items[0].NavigateUrl = AfeAttachment;