我有一个 MVC 项目,其中有一个返回 url 的全局函数。这是其中之一:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Account.Models
{
public class ApplicationStrings
{
public static string ApplicationString(){
return "http://localhost11234/Studentbook";
}
}
}
我有资源文件,用于存储不同电子邮件的电子邮件正文。这是一个嵌入式资源。
如何从资源文件中的全局函数访问 URL?
我尝试以下方式,但没有看到链接:
<html>
<body>
<br> Student ID : <a href= ApplicationStrings.ApplicationString() + ?id=JD1123>JD1123</a><br>
</body>
</html>
我看到以下内容:
Student ID : JD1123
这里 JD1123 是一个链接,该链接将我带到“ApplicationStrings.ApplicationString()”而不是“http://localhost11234/Studentbook?id=JD1123”