在我的detailsview控件中,我有几个带有boolean = true的checkedboxfield。我想要的是在任何文本上都有超链接,例如数据字段的HeaderText,以便导航到其他页面。可能吗?如果没有,有什么建议吗?
对于模式详细信息,单击gridview中的超链接时,详细信息视图将显示如果boolean = true则选中哪个复选框,如果为false则不选中。我想在Checked CheckedBoxField上有超链接文本(未经检查的复选框,我将其隐藏在代码后面)。
下面是aspx:
`
<Fields>
<asp:CheckBoxField DataField="Sample_Preparation_SP" HeaderImageUrl="~/Images/Coal/Coal.jpg"
HeaderText="Sample_Preparation" Text="Sample_Preparation" />
<asp:CheckBoxField DataField="Free_Moisture_FM" HeaderImageUrl="~/Images/Biomass/Wood Chips.jpg"
HeaderText="Free_Moisture_FM" SortExpression="Free_Moisture_FM" Text="Free Moisture" />
<asp:CheckBoxField DataField="Inherent_Moisture_IM" HeaderImageUrl="~/Images/Coal/Coal.jpg"
HeaderText="Inherent_Moisture_IM" SortExpression="Inherent Moisture" Text="Inherent Moisture" />
<asp:CheckBoxField DataField="Total_Moisture_TM" HeaderText="Total_Moisture_TM" SortExpression="Total_Moisture_TM" HeaderImageUrl="~/Images/Biomass/Wood Pellet3.jpg" Text="Total Moisture" />
<asp:CheckBoxField DataField="Gross_Calorific_Value_GCV" HeaderText="Gross_Calorific_Value_GCV"
SortExpression="Gross_Calorific_Value_GCV" HeaderImageUrl="~/Images/Biomass/EFB.jpg" Text="Gross Calorific Value" />
<asp:CheckBoxField DataField="Net_Calorific_Value_NCV" HeaderText="Net_Calorific_Value_NCV" SortExpression="Net_Calorific_Value_NCV" HeaderImageUrl="~/Images/Biomass/Wood Chips.jpg" Text="Net Calorific Value" />
</Fields>
</asp:DetailsView>
<asp:SqlDataSource
ID="SqlDataSource1"
runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString2 %>"
SelectCommand="SELECT [SampleID],[Sample_Preparation_SP], [Free_Moisture_FM], [Inherent_Moisture_IM], [Total_Moisture_TM] ,[Gross_Calorific_Value_GCV], [Net_Calorific_Value_NCV] FROM [tbl_SampleRegistration] WHERE SampleID =@SampleID" >
<SelectParameters>
<asp:QueryStringParameter Name="SampleID" QueryStringField="SampleID" />
</SelectParameters>
</asp:SqlDataSource>`
答案 0 :(得分:0)
最好的方法是使用详细信息视图的模板字段,以便您可以自定义任何级别的内容。
请参阅MSDN的这个优秀链接
http://msdn.microsoft.com/en-us/library/bb288033.aspx