为什么动态创建的文本框添加了这个不需要的字符?怎么拿出来
onkeyup="numeri_validator(this,'clockin_100001_1','total_100001_1')"
这是后面的代码
string s="numeri_validator(this,'" + textboxClockIn.ID.ToString() + "','"+textboxTotal.ID.ToString()+"')";
string decodedString = System.Web.HttpUtility.HtmlDecode(s);
textboxClockIn.Attributes.Add("onkeyup",decodedString);
textboxClockOut.Attributes.Add("onkeyup", "numeri_validator(this,'" + textboxClockOut.ID + "','" + textboxTotal.ID + "')");
两者的结果相同。
当我打破这是我的打破结果:
numeri_validator(this,'clockin_100001_1','total_100001_1')
请给我提意见