急用!!!!!!
这是html登录按钮<input name="btBun" type="button" id="btBun" value="确定" />
请问如何点击进入主页面,现在问题是按钮没反应,就是一摆设,点击进不去 --------------------编程问答-------------------- 如何点击进入主页面?什么意思?进入aspx.cs页面吗?你这是html登录按钮... --------------------编程问答-------------------- 单击事件怎么写的! --------------------编程问答-------------------- 要是就像你写的这样 当然一点反应都没有
给它个事件 <input type="button" value="确定" onclick="window.location.href='你的主页'"/> --------------------编程问答--------------------
html登陆按钮就不能进了?
--------------------编程问答-------------------- <input name="btBun" type="button" id="btBun" value="确定" onclick="window.location='index.aspx';"/> --------------------编程问答-------------------- 给他一个onclick事件,事件代码写在title下面<script></script>里 --------------------编程问答-------------------- 如果重新打开一个浏览器:
<input name="btBun" type="button" id="btBun" value="确定" onclick='window.open("a.aspx/a.html")' />
如果当前页直接跳转:
<input name="btBun" type="button" id="btBun" value="确定" onclick='location.href("a.aspx/a.html")' />
--------------------编程问答--------------------
你在vs2005里双击html登陆按钮能进入相应的aspx.cs页面里?vs2005只会在aspx页面生成js方法 --------------------编程问答-------------------- submit?
或者 ruant="server" --------------------编程问答-------------------- 写单击事件呗!或者javascript
补充:.NET技术 , ASP.NET