我正在使用以下代码。
<asp:GridView ID="grdMapsDrive" runat="server" AutoGenerateColumns="false" Width="90%" AllowSorting="true" GridLines="Horizontal"
RowStyle-Height="20px" BorderWidth="0" DataKeyNames = "ID" EmptyDataText="No Maps Found."
Style="text-align: center; vertical-align: middle;" OnRowDataBound="grdMapsDrive_RowDataBound">
如果EmptyDataText="No Maps Found."
,我想设置txtMapView.Text="No Maps"
。另外,如果EmptyDataText="No Data."
,我想设置txtMapView.Text="Data"
。
其中txtMapView
是文本框。
我尝试了使用内联代码表达式的各种方法,但无法成功 任何人都可以帮助我在C#中使用正确的表达方式。
谢谢, GAGAN