asp.net本身支持一个runat="server" form 如果需要多个就不能嵌套写了,有些搜索的代码偏偏布局在form里面,而我又不想写成服务器控件,只想通过form进行提交,这时候就很麻烦了,大家有什么好方式?
类似下面的代码,页面顶部尾部中间都有分布,html页面好说,aspx页面怎么设计好呢
<form action="/Search.aspx" method="get" id="searchform" onsubmit="return goSearch()" target="_blank">
<input tabindex="1" type="text" id="keyword" name="keyword" value="" onfocus="this.value=''" />
<button tabindex="2" type="submit">搜 索</button>
</form>
萧十郎