我在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#。