码迷,mamicode.com
首页 > Web开发 > 详细

服务器控件中使用<%#...>, JS和html控件中使用<%=...>

时间:2015-09-16 17:56:48      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

//在服务器控件的属性中,需要用<%#...>来绑定其他控件的ID, 并且要在页面初始方法中,执行Page.DataBind();

技术分享
<asp:ImageButton ID="imgBtnLogin" ImageUrl="~/App_Themes/DefaultTheme/Images/login_10.png" runat="server" BorderStyle="None" OnClientClick=‘<%#"pwdMd5("+this.txtUserPwd.ClientID+")"%>‘ Style="z-index: 1; width: 80px; height: 34px; cursor: pointer;"  OnClick="imgBtnLogin_Click" />
View Code

 

 

//在Js脚本和HTML控件中, 可以直接使用<%=...>

技术分享
            function pwdMd5(elem) { 
                //alert(elem);
                alert(‘<%= this.txtUserPwd.ClientID %>‘);
            }
View Code

 

服务器控件中使用<%#...>, JS和html控件中使用<%=...>

标签:

原文地址:http://www.cnblogs.com/cs_net/p/4813853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!