asp.net下linkbutton的前后台使用方法
前台:
Code
后台:
[复制此代码]CODE:
protected void lbtnUp_Click(object sender, EventArgs e)
{
string id = ((LinkButton)sender).CommandArgument;
common.salert(id);
}
{
string id = ((LinkButton)sender).CommandArgument;
common.salert(id);
}