Web.cmt 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".aspx" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName);
  6. string DALSpace= host.NameSpace+".BLL."+ host.GetBLLClass(host.TableName);
  7. ColumnInfo identityKey=host.IdentityKey;
  8. #>
  9. <!-- Add.aspx -->
  10. <table cellSpacing="0" cellPadding="0" width="100%" border="0">
  11. <# foreach (ColumnInfo c in host.Fieldlist)
  12. { #>
  13. <tr><td height="25" width="30%" align="right">
  14. <#= c.Description == "" ? c.ColumnName : c.Description #>:</td>
  15. <td height="25" width="*" align="left">
  16. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="datetime") { #>
  17. <asp:TextBox ID="txt<#= c.ColumnName #>" runat="server" Width="70px" onfocus="setday(this)"></asp:TextBox>
  18. <#} else #>
  19. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="bool") { #>
  20. <asp:CheckBox ID="chk<#= c.ColumnName #>" Text="<#= c.Description #>" runat="server" Checked="False" />
  21. <#} else #>
  22. <# { #>
  23. <asp:TextBox id="txt<#= c.ColumnName #>" runat="server" Width="200px"></asp:TextBox>
  24. <#}#>
  25. </td></tr>
  26. <# } #>
  27. <script src="/js/calendar1.js" type="text/javascript"></script>