url.Actionlink到另一个网站index.php

时间:2016-02-10 14:19:14

标签: php jquery asp.net-mvc asp.net-ajax

我该如何转换呢;

 <a href="@Url.Action("Index","Chat" , new { Id = item.Id , Member = item.Member }))" class="theme-btn btn-style-one hvr-bounce-to-right"><span style="float:right;min-width:210px;"></span>GİRİŞ</a><br /><br />

能够将ID发送到另一个ftp的index.php页面。这是(www.trp.com/index.php)

1 个答案:

答案 0 :(得分:1)

您无法使用Url helper解析外部网址。你只需使用String.Format

href="@String.Format("http://www.trp.com/index.php?id={0}&member={1}", item.Id, item.Member)"