本文介绍了'Operator Name'运算符后缺少操作数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用dataview过滤我的gridview.我将filter命令传递到dataview,如下所述;

I am filtering my gridview using dataview. I am passing the filter command to dataview as mentioned below;

string strFilter= " 0=0 ";  
  
if (Session["SampleSession"] != null)     
{       
  strFilter= strFilter+ " and EmpName = '" + Session["SampleSession"].ToString() + "'";     
} 
  
dv.RowFilter = strFilter;  // Throws an error here!



在上面的行中的运算符名称"运算符之后,它将引发缺少操作数的错误.

我相信有一个我无法捕捉到的小错误.

请指导我!



It throws an error of Missing operand after ''Operator Name'' operator in above line.

I believe there is small error which i am unable to catch.

Please guide me!

推荐答案

string strFilter= @" 0=0 "; 
if (Session["SampleSession"] != null)     
{       
  strFilter= strFilter+ @" and EmpName = ''" + Session["SampleSession"].ToString() + "'' ";     
} 



这篇关于'Operator Name'运算符后缺少操作数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 16:15