~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/addins/AspNetAddIn/Templates/WebForm-CodeBehindNonPartial.xft.xml

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-03-29 23:36:33 UTC
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20080329233633-l550uuwvfh1e68at
Tags: upstream-1.0+dfsg
ImportĀ upstreamĀ versionĀ 1.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        <TemplateConfiguration>
8
8
                <_Name>Web Form with CodeBehind</_Name>
9
9
                <Icon>md-html-file-icon</Icon>
10
 
                <Category>ASP.NET</Category>
 
10
                <_Category>ASP.NET</_Category>
11
11
                <LanguageName>*</LanguageName>
12
12
                <ProjectType>AspNetApp</ProjectType>
13
13
                <_Description>Creates an ASP.NET Web Form with a CodeBehind class.</_Description>
21
21
        <TemplateFiles>
22
22
                <AspNetFile name="${Name}.aspx" DefaultExtension=".aspx" BuildAction="FileCopy">
23
23
                        <FileText>
24
 
                                <![CDATA[<%@ Page Language="${Language}" Inherits="${Namespace}.${Name}" %>
 
24
                                <![CDATA[<%@ Page Language="${AspNetLanguage}" Inherits="${Namespace}.${Name}" %>
25
25
${Doctype}
26
26
<html>
27
27
<head>
42
42
 
43
43
namespace ${Namespace} {
44
44
        
45
 
        public class ${Name} : System.Web.UI.Page
 
45
        public class ${EscapedIdentifier} : System.Web.UI.Page
46
46
        {
47
47
                
48
48
        }