asp.net 服务器控件LinkButton等在后台代码中设置js事件或添加css样式

 <asp:LinkButton ID="Lk_AreaType" runat="server" OnClick="Lk_AreaType_Click"></asp:LinkButton>

这个如果想在后台cs代码中控制不显示下划线,如下写法即可:

this.Lk_AreaType.Style.Add(HtmlTextWriterStyle.TextDecoration, "none");
this.Lk_AreaType.Attributes.Add("onclick", "前台js方法名");


上一篇:每天一个知识点linux(十)压缩和解压缩


下一篇:Linux下打包压缩war、解压war包和jar命令