本文介绍了图像按钮代码............................................... .................................................. ................................的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在html中编码图像按钮.....
i wanna code for image button in html.....
推荐答案
<asp:imagebutton id="btnSearch" runat="server"
ImageUrl="~/Images/search.png"
OnClick="Search_Onclick" />
页面背后:
page behind:
protected void Search_Onclick(object sender, ImageClickEventArgs e)
{
//your code goes here.
}
祝你好运,请在询问任何问题之前在谷歌搜索。
Good luck, and please search on google before asking any question.
这篇关于图像按钮代码............................................... .................................................. ................................的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!