从 Web 表单创建模板项并自动生成继承页面指令

发布于 2024-08-19 12:52:26 字数 818 浏览 5 评论 0原文

好的,我正在尝试从 Web 表单创建模板项。

我引用了这篇文章: http://www.west-wind.com/ weblog/posts/740022.aspx 它导出模板并安装得很好。

当您尝试在项目中使用模板项时,它会在页面指令中留下继承=“_Default”,如下所示:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="FormTemplateDev.aspx.cs" Inherits="_Default" %>

因此它认为所有新模板项都使用模板生成前的原始表单名称。这也是背后代码中的一个问题,如下所示:

public partial class _Default : System.Web.UI.Page 

我已经看到了传递参数字符串的示例,但还没有设法编译任何内容。我发现如下:

public partial class $safeitemname$ : System.Web.UI.Page

有人有什么建议吗?

这是我找到的可用模板参数列表的链接:

项目模板参数< /a>

OK, so I'm trying to create a template item from a web form.

I have referenced this article: http://www.west-wind.com/weblog/posts/740022.aspx
and it exports the template and installs it fine.

When you try and use the template item within a project though it leaves the inherits="_Default" in the page directive like shown below:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="FormTemplateDev.aspx.cs" Inherits="_Default" %>

So it thinks all the new template items use the original form name pre-template generation. This is an issue in the code behind too as shown here:

public partial class _Default : System.Web.UI.Page 

I have seen example of passing paramater strings through but havent managed to get anything to compile. I found something like below:

public partial class $safeitemname$ : System.Web.UI.Page

Does anyone have any suggestions?

This was the link to the list of available template parameters i found:

Project Template Parameters

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

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

发布评论

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

评论(1

眼眸 2024-08-26 12:52:26

好吧,就这么简单:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="FormTemplateDev.aspx.cs" Inherits="$safeitemname$" %>

并且...

public partial class $safeitemname$ : System.Web.UI.Page

它让我感到困惑,因为页面无法编译并且页面愤怒地变成红色!这意味着一旦您完成并构建了模板项,您就必须将这些 $slightlystrangeparameters$ 放入其中。添加参数并将其导出为模板。

希望这对其他人有帮助......

OK so It is as simple as this:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="FormTemplateDev.aspx.cs" Inherits="$safeitemname$" %>

and...

public partial class $safeitemname$ : System.Web.UI.Page

It threw me because the page won't compile and the page turns red with rage! This means you will have to put these $slightlystrangeparameters$ in once you have got your template item completed and built. Add the parameters in and export it as a template.

Hope this helps someone else...

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