问题描述
1.aspx<formrunat="server">/**-这里省略一些内容-**/<divid="1"><formmethod="post"action=""id="getinfo_form">第一步:请输入名字名字:<inputname="showname"><bottonid="s1">下一步</botton></form></div><divid="2">/**-这里是在点“下一步”按钮后出现的-**/<formmethod="post"action=""id="getinfo_form">第二步:看名字对否:<%=Request.Params["showname"]%><buttononclick="location.href='tj.aspx?name=<%=Request.Params["showname"]%>'"id="s2">提交</botton></form></div></form>我想请问下,在1.aspx.cs中我该怎么写,才能在我点"下一步"这个按钮后,能在出现的id="2"的这个DIV区域中显示出我获取的这个showname值
解决方案
解决方案二:
为何不用javasctipe实现
解决方案三:
<html><head><title>test</title><scripttype='text/javascript'>function$(a){returndocument.getElementById(a);}function_$(a){document.write(a);}username="tianmin200";//varstr=Session[""];functionshowName(){vartxt_name=$("showname");vardiv=$("2");varlink=$("link");username=txt_name.value;div.innerHTML=username+"<br/>";link.href="ti.aspx?name="+username+"";}</script></head><formrunat="server">/**-这里省略一些内容-**/<divid="1"><formmethod="post"action=""id="getinfo_form">第一步:请输入名字名字:<inputid="showname"><inputtype="button"value="下一步"onclick="showName()"></form></div>第二步:看名字对否:<divid="2">/**-这里是在点“下一步”按钮后出现的-**/</div><aid="link">提交</a></form></form></html>
解决方案四:
建议:一个aspx页面用一个form就够了
解决方案五:
不懂WEB。。帮顶
解决方案六:
还是页面的写法阿,跟写的asp程序没什么区别,建议使用codebehind的方式来做。
解决方案七:
html即可