从保存在数据库中的 Link 重定向到 Link
Redirect to Link from Link saved in database
我正在使用 MVC 开发 Web 应用程序。
我在数据库 中添加了一个 link,例如:"www.google.com",我希望用户在点击时重定向到 Google。
我尝试了很多方法,但在地址栏中找到了控制器 "eg:http://localhost:/Home/www.google.com"
View Code
<table class="table" style="margin-top:10px;">
<tr>
<th>
Sr. No.
</th>
<th>
Name
</th>
<th>
Details
</th>
<th>
Status
</th>
<th>
Tracking No.
</th>
<th>
Tack Order
</th>
<th>
Ordered On
</th>
</tr>
@{int row = 0;} @foreach (var item in Model) { if (item.PaymentSuccessfull == true) {
<tr>
<td>
@(row += 1)
</td>
<td>
@Html.DisplayFor(modelItem => item.DeliveryDetail.FirstName)
</td>
<td>
<a href="/Home/OrderDetails?orderId=@item.Id" orderid="1">Order Details</a>
</td>
<td>
@Html.DisplayFor(modelItem => item.Status)
</td>
<td>
@Html.DisplayFor(modelItem => item.TrackingId)
</td>
<td>
//Here I want user to redirect to Google on click
<a href="@Html.DisplayFor(modelItem => item.TrackingURL)" target="_blank">Track</a>
</td>
<td>
@Html.DisplayFor(modelItem => item.DateTime)
</td>
</tr>
} }
感谢您的帮助。
提前致谢。
您必须将协议与 URL 的其余部分一起存储。
所以:
www.google.com
变为:
http://www.google.com
我正在使用 MVC 开发 Web 应用程序。 我在数据库 中添加了一个 link,例如:"www.google.com",我希望用户在点击时重定向到 Google。
我尝试了很多方法,但在地址栏中找到了控制器 "eg:http://localhost:/Home/www.google.com"
View Code
<table class="table" style="margin-top:10px;">
<tr>
<th>
Sr. No.
</th>
<th>
Name
</th>
<th>
Details
</th>
<th>
Status
</th>
<th>
Tracking No.
</th>
<th>
Tack Order
</th>
<th>
Ordered On
</th>
</tr>
@{int row = 0;} @foreach (var item in Model) { if (item.PaymentSuccessfull == true) {
<tr>
<td>
@(row += 1)
</td>
<td>
@Html.DisplayFor(modelItem => item.DeliveryDetail.FirstName)
</td>
<td>
<a href="/Home/OrderDetails?orderId=@item.Id" orderid="1">Order Details</a>
</td>
<td>
@Html.DisplayFor(modelItem => item.Status)
</td>
<td>
@Html.DisplayFor(modelItem => item.TrackingId)
</td>
<td>
//Here I want user to redirect to Google on click
<a href="@Html.DisplayFor(modelItem => item.TrackingURL)" target="_blank">Track</a>
</td>
<td>
@Html.DisplayFor(modelItem => item.DateTime)
</td>
</tr>
} }
感谢您的帮助。 提前致谢。
您必须将协议与 URL 的其余部分一起存储。
所以:
www.google.com
变为:
http://www.google.com