Hi all,
i have a gridview using the SqlDataSource which need to pass the parameter.
however, it fail to pass the parameter.
below is my table coding:
</asp:GridView><asp:GridView ID="Workflows0" runat="server" AutoGenerateColumns="False"
DataSourceID="SqlDataSource1" EnableModelValidation="True"
OnRowDataBound="WorkflowsGridview_RowDataBound" SkinID="GridView">
<HeaderStyle BackColor="Green" Font-Bold="True" Font-Size="12px"
ForeColor="White" Height="18px" />
<Columns>
<asp:BoundField DataField="WorkflowName" HeaderText="Workflow" />
<asp:BoundField DataField="ApproverIdName" HeaderText="Approval Name" />
<asp:BoundField DataField="S ...
Go to the complete details ...