如何通过服务器控件生成完整的 ASP.Net Webform?
我需要使用服务器控件制作一个完整的 asp.net web 表单。我想知道如何做到这一点? .Net 中有一个名为 Page 的类,但我不知道如何使用它。 页面或 WebForm 必须具有 URL,以便可以从其他页面进行访问。谁知道这个?
I need to make a full asp.net webform with Server Control. I Wonder how to do this?
There is a class called Page in .Net but I don't know how to work with it.
A Page or WebForm must have a URL so from other pages can be accessible. Who knows this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题是在不使用 aspx 的情况下生成页面,对吗?
如果您希望可以从 Web 服务器访问页面,则需要 .aspx 文件,即使您完全通过代码生成页面。
要创建页面,您需要创建一个继承自 Page 类的类,并向其中添加服务器控件。
为了获得此页面的 url,您只需创建一个包含以下内容的 aspx 页面:
Your problem is to generate your page without using aspx, am I right ?
If you want your page to be accessible from your WebServer, you will need the .aspx file, even if you completely generate your page by code.
To create your page, you create a class who inherits from the Page class, and you add your server controls to it.
In order to have an url for this page, you just need to create an aspx page with this content :