行コマンドが呼び出されたときに、複数のコマンド引数にわたって送信しようとしています:
<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:Button ID="btnAct" runat="server" CausesValidation="False" CommandName="Action"
Text='De-Activate' CommandArgument='<%# Bind("isActiveYN") + ";" + Bind("employeeid") %>' />
<asp:Label ID="lblActivate" runat="server" Text='<%# Bind("isActiveYN") %>' Visible='False'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
ただし、複数の引数を使用すると、後半のみが表示されます。このemployeeid
.単一の引数のみを指定すると、正常に機能します。
protected void gvEmp_RowCommand(object sender, GridViewCommandEventArgs e)
{
string changeactive = null;
if (e.CommandName == "Action")
{
//LinkButton lnkPortal = (LinkButton)sender;
string isactivestatus = Convert.ToString(e.CommandArgument);
string[] arg = new string[2];
arg = isactivestatus.Split(';');
//lblTest.Text = isavtivestatus.Text;
string status = Convert.ToString(arg[0]);
int empid = Convert.ToInt32(arg[1]);
if (status.ToUpper() == "Y")
{
lblTest.Text = isactivestatus + " Will Change to N " ;
changeactive = "N";
}
else if (arg[0].ToUpper() == "N")
{
lblTest.Text = isactivestatus + " Will Change to Y " ;
changeactive = "Y";
}
DataSet ds = new DataSet("Employees");
string query = "Update employees set isActiveYN='" + changeactive
+ "' where employeeid=" + empid;
SqlConnection con = new SqlConnection("Password=admin;User ID=admin;Initial Catalog=asptest;Data Source=dbsvr");
SqlDataAdapter da = new SqlDataAdapter(query, con);
da.Fill(ds);
BindGrid();
}
}
間違いを指摘してください。デバッグを試みましたが、何が問題なのかを判断できませんでした。