从 Web 表单创建模板项并自动生成继承页面指令
好的,我正在尝试从 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
有人有什么建议吗?
这是我找到的可用模板参数列表的链接:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,就这么简单:
并且...
它让我感到困惑,因为页面无法编译并且页面愤怒地变成红色!这意味着一旦您完成并构建了模板项,您就必须将这些 $slightlystrangeparameters$ 放入其中。添加参数并将其导出为模板。
希望这对其他人有帮助......
OK so It is as simple as this:
and...
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...