This view suppose to show a list of hyperlinks, each pointing to an external URL. The goal is for the user to click one of these links and have their browser open a new tab
Two ways :
1. update the database column with full link:
eg SQL:
SQL
update ProductTable set LinkColumn='http://www.example.com/Product/Mobiles' where ID=123
In asp mvc view
View
2. Hardcode the http part and list from model
http
hope helps someone.