我以这种方式在我的 ASP.NET VB.NET 应用程序中使用强类型 URL:
Resonse.Redirect(WebForm1.RealtiveURL)
Public Class WebForm2
Inherits System.Web.UI.Page
Public Shared ReadOnly Property RealtiveURL As String
Get
Return "~/Folder/Where/I/Am/WebForm2.aspx"
End Get
End Property
End Class
是否有另一种方法可以自动从 WebForm 获取相对 url,也许是将类传递给函数?
我在互联网上找到了一种带有 .tt 文件的方法,但仅适用于 c#。