Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 asp.net Web 应用程序。它在根目录中包含两个页面 - P1.aspx 和 P2.aspx。最后,我在一个 dll 中编译了应用程序。现在我创建了另一个网站,添加了一个 aspx 页面并引用了 dll。现在在这个页面上,我想重定向到 P1.aspx。怎么办,求解答。
重定向通过 HTTP 进行,而不是通过 .NET。所以没有办法重定向到一个类,你必须重定向到一个 URL。
因此,您需要知道相对 URL,并按照传统方式进行重定向。可能:
Response.Redirect("../myothersite/P1.aspx");