0

我需要在以下 gridview 的选定行上引用来自 lblCaseStatus 的标签值:

<asp:GridView ID="grdTaskList" runat="server" DataKeyNames="CaseID"
              AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True"
              PageSize="20">
    <Columns>
        <asp:BoundField DataField="Task" HeaderText="Task" SortExpression="Task" 
                        ItemStyle-Width="350px" />
        <asp:BoundField DataField="DueDate" HeaderText="Due Date" SortExpression="DueDate"
                        DataFormatString="{0:d}" />
        <asp:TemplateField HeaderText="Case Status">
            <ItemTemplate>
                <asp:Label ID="lblCaseStatus" runat="server"></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField>
            <ItemTemplate>
                <asp:LinkButton ID="btnView" runat="server" Text="View"
                                CommandName="ViewIntake"
                                CommandArgument='<%# Eval("CaseID") %>' 
                                Font-Bold="true" />
            </ItemTemplate>
            <ItemStyle HorizontalAlign="Center" />
    </asp:TemplateField>
    </Columns>
</asp:GridView>  

我在网上搜索过,但没有找到任何可行的解决方案。我尝试使用基于此 SO 答案(https://stackoverflow.com/a/10784039/3938754)的答案,其中包括此免责声明:
备注:这仅适用于 Boundfields。
我正在使用 TemplateField 并猜测这就是它失败的原因:

Dim id as Guid = grdTaskList.DataKeys(row.RowIndex).Value

错误阅读:
指定的演员表无效。(从数字转换时,值必须是小于无穷大的数字。)RowIndex
和Value都有数据。

Private Sub grdTaskList_RowCommand(sender As Object, e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles grdTaskList.RowCommand
    If (e.CommandName = "ViewIntake") Then
        Dim caseID As Integer = Int32.Parse(e.CommandArgument.ToString())

        Dim row As GridViewRow = CType(CType(e.CommandSource, Control).NamingContainer, GridViewRow)
        Dim id As Guid = grdTaskList.DataKeys(row.RowIndex).Value
        Dim caseStatus As String = CType(row.Cells(2), DataControlFieldCell).Text

        Response.Redirect(IntakeSite.EditIntake.GetPageURL(caseID:=caseID, caseStatus:=caseStatus))
    End If
End Sub

那么如何从 RowCommand 方法引用 ItemTemplate 中的标签值呢?

提前感谢您的时间和帮助。

4

1 回答 1

0

此分配将触发InvalidCastException,因为它尝试将Object值直接从DataKey.Value属性转换为Guid类型:

Dim id As Guid = grdTaskList.DataKeys(row.RowIndex).Value 'throws InvalidCastException

您需要使用CTypeorSystem.Guid构造函数:

' using type conversion
Dim id As Guid = CType(grdTaskList.DataKeys(row.RowIndex).Value, System.Guid)

' alternative with Guid constructor
Dim id As Guid = New Guid(DirectCast(grdTaskList.DataKeys(row.RowIndex).Value, String))

Guid.Parse可以使用方法来确保传递的值采用正确的 GUID 格式:

Dim id As Guid = Guid.Parse(grdTaskList.DataKeys(row.RowIndex).Value.ToString())

或者,如果 GUID 使用某些格式,如连字符和/或用大括号括起来,请使用Guid.ParseExact格式说明符,如下例所示:

'example format: 00000000-0000-0000-0000-000000000000
Dim id As Guid = Guid.ParseExact(grdTaskList.DataKeys(row.RowIndex).Value.ToString(), "D")

作为旁注,如果您想设置有关有效 GUID 值的条件,请使用TryParse或。TryParseExact

更新1:

由于DataKey.ValueInteger类型,CType参数需要稍微修改:

Dim id As Guid = New Guid(CType(grdTaskList.DataKeys(row.RowIndex).Value, Integer))

或使用自定义共享函数Integer进行转换:Guid

' other module
Public Shared Function ToGuid(ByVal value As Integer) As Guid
   Dim bytes As Byte() = New Byte(16)
   BitConverter.GetBytes(value).CopyTo(bytes, 0)
   Return New Guid(bytes)
End Function

' RowCommand method
Dim val As Integer = CType(grdTaskList.DataKeys(row.RowIndex).Value, Integer)
Dim id As Guid = ToGuid(val)
于 2018-05-02T04:00:44.240 回答