为什么 Asp.net 中页面的命名约定与全局约定相反?

发布于 2024-10-14 02:02:39 字数 107 浏览 1 评论 0原文

在asp.net中,当我们使用代码隐藏页面时,somename.aspx页面继承somename.aspx.cs
意味着页面后面的代码是父级的,但页面的名称被视为 .aspx 被 .cs 继承

In asp.net when we use code behind pages somename.aspx page inherit somename.aspx.cs
Means code behind page is parent but the name for the page is taken as if .aspx is being inherited by .cs

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间你老了 2024-10-21 02:02:39

不过,隐藏代码的文件类型与页面不同——一个是 cs 文件(即 c# 源代码),另一个是 aspx 文件(即 ASP.Net 页面)。鉴于文件类型由操作系统确定为最后一个段,因此必须以这种方式命名。

The file type for the code behind is different to the page though -- one is a cs file (i.e. c# source code) and the other an aspx file (i.e. ASP.Net page). Given the file type is determined by the operating system to be the last segment, it has to be named in this way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文