[ad_1]
你好,
如何首先点击我们网站的 url,然后将目标 url 加载到 newtab。
前任:
网址:www.destinationurl.com
当我单击上面的链接时,首先打开新选项卡并点击我的网站网址(例如 www.mysiteurl.com),然后加载目标网址。
请帮我。
谢谢。
解决方案1
单击按钮或任何超链接
重定向到 url http://ursite.com/redirect.aspx?url=http://fb.com
在redirect.aspx页面加载中写下代码
C#
protected void Page_Load(object sender, EventArgs e) { if(Request.QueryString["url"]!=null) { Response.Redirect(Request.QueryString["url"].ToString()); } }
希望它能帮助你…
解决方案2
发送为 http://localhost:52489/Default1/index?url=codeproject.com
并在操作结果中写下代码…
C#
public ActionResult Index(string url) { Response.Redirect("http://"+url); return View(); }
我认为这会解决你的问题。
[ad_2]
コメント