Bind two column field to linkbutton inside gridview
column fiedls are WorkNo and Jobid
<asp:LinkButton ID="lbtnAddProdReport" runat="server" CommandArgument='<%# Eval("WorkNo","Jobid") %>'
oncommand="lbtnAddProdReport_Command">Add Production Report</asp:LinkButton>
Retrieving WorkNo,Jobid in Linkbutton CommandArgument Getting Error
protected void lbtnAddProdReport_Command(object sender, CommandEventArgs e)
{
string woNo = e.CommandArgument.ToString(); //Not retrieving i try to declare string woNo as array but it show error
Response.Redirect("Report.aspx?woNo=" + woNo);
}
Please tell me how to retrieve workno, jobid into linkbutton command