C#按钮实现网页跳转?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#按钮实现网页跳转?相关的知识,希望对你有一定的参考价值。
在VS2008环境里,在一个asp网页里加一个按钮,一点就能在当前窗口打开另一个网页,就像文字的超级链接一样,如何用C#实现~~初学者,请写详细一些哈~~
参考技术A C# 代码//按钮事件
public void Button1_Click(object sender,EventAge e)
Response.Redirect("a.aspx");
本回答被提问者采纳 参考技术B Response.Redirect("**.aspx");
双击按钮进去,在Click事件里面写上这,就可以跳转了 参考技术C response对象的重定向和sendURL都可以的,senddirect(URL),在click事件里加上就可以了 参考技术D 尽量的用连接,不用提交服务器的。就别提交了。
<input class="btn1" value='回复' type="button" onclick="location.href=‘连接网址' 第5个回答 2010-02-01 1.window.open(url); //打开新的页面
2.window.location.href = url; //页面跳转
3.window.showModalDialog(url); //弹出模态对话框
求C# winform中点击按钮执行网页JS提交表单代码实现~~!
已知网页中定义保存JS代码:function doSave(obj)obj.action="/lemis" "/supervise/entBasicInfoAction.do?method=save
参考技术A 如果你用的是 webbrowser 的话,可以执行js脚本,或者出发页面上的html控件的事件来达到目的:我不知道你的应该,我列两个你参考一下吧
webBrowser1.Document.GetElementById("userid").InnerText = Account;
webBrowser1.Document.GetElementById("password").InnerText = textBox2.Text;
IHTMLDocument2 id2 = webBrowser1.Document.DomDocument as IHTMLDocument2;
IHTMLWindow2 win = id2.parentWindow;
win.execScript("CheckAndLogin()", "javascript");
或者执行按钮事件
webBrowser1.Document.GetElementById("card_number").InnerText = Account;
webBrowser1.Document.GetElementById("card_password").InnerText = textBox2.Text;
HtmlElement elemButton = webBrowser1.Document.GetElementById("select_order");
mshtml.HTMLInputElement button = (mshtml.HTMLInputElement)(elemButton.DomElement);
button.click(); 参考技术B < div>
你的名字< asp:TextBox ID="name" runat="server">< /asp:TextBox>< br />
< br />
你的网站< asp:TextBox ID="website" runat="server">< /asp:TextBox>< br />
< br />
< br />
< asp:Button ID="Button1" runat="server" Text="send" />< br />
< br />
< br />
学习request 和 response的用法< br />
< br />
< br />
< /div>
< /form>
-----------------------------------------------------------------------------------------------------------
< form id="form2" method="post" runat="server"> post方法提交表单
< div>
你的名字< asp:TextBox ID="name2" runat="server">< /asp:TextBox>< br />
< br />
你的网站< asp:TextBox ID="website2" runat="server">< /asp:TextBox>< br />
< br />
< br />
< asp:Button ID="Button2" runat="server" Text="send" />< br />
< br />
< br />
学习request 和 response的用法< br />
< br />
< br />
< /div>
< /form> 参考技术C 在delphi中是通过mshtml配合webbrowser控件实现的
比如delphi中是 (webbrowser.document as IHTMLDocument2).parentWindow.doSave();即可
既然C#和Delphi是同一个人设计的 我想差别应该不大 只能帮你到这儿了
以上是关于C#按钮实现网页跳转?的主要内容,如果未能解决你的问题,请参考以下文章
用.NET做网站,在页面放一个按钮,点击按钮实现网页换肤功能,求代码