如何在代码后面检查fromview的当前视图模式

本文关键字:视图 模式 fromview 检查 代码 | 更新日期: 2023-09-27 18:17:17

我想检查FormView当前模式是否为只读,以便我可以运行一些代码。我该怎么做呢?谢谢你。

 protected void FormView_DataBound(object sender, EventArgs e)
{
 //Here I want to add codes only if the current view of the Formview is read only (neither insert nor edit modes).
{

如何在代码后面检查fromview的当前视图模式

可以检查FormView是否在FormViewMode.ReadOnly中

查看这篇文章- http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.formview.currentmode(v=vs.110).aspx。

protected void FormView_DataBound(object sender, EventArgs e)
{    
//Here I want to add codes only if the current view of the Formview is read only (neither insert nor edit modes).
   if (FormView.CurrentMode == FormViewMode.ReadOnly)
   {
   }
}

取自:FormView。运放地产

protected void FormView_DataBound(object sender, EventArgs e)
{    
   if (FormView.CurrentMode == FormViewMode.ReadOnly)
   {
   }
}