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

url.Actionlink to another website to index.php

我该如何转换它;

 <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)

您无法用 Url helper 解析外部 url。你可以只使用 String.Format

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