标签: c# asp.net uri
也许我现在会问一些愚蠢的东西,但无论如何。有没有办法从类中获取页面URI,继承自System.Web.UI.Page。不是对象,而是类本身。例如:
页面声明:
public partial class Orders : System.Web.UI.Page { ......... }
在另一页上使用:
Response.Redirect(GetPageUri(Orders), false);
如何实施GetPageUri(Orders)?
GetPageUri(Orders)