This topic is locked

How to change textbox length in edit page

11/2/2005 5:05:18 AM
ASPRunner.NET General questions
author

The textboxes on the edit pages are all the same length, and too short. Can these be resized? If not builtin to the program, can you offer a tip on manually editung the page to lengthen these?
Also, can the edit page be 2 columns? Again, if not, can you offer a tip on manually editing the page to do so?

Eugene 11/2/2005
  1. You can change length of textboxes at the page Formatting (Step 8) with Edit Format.


2. To display two columns at edit page you have to edit your file "TableName_edit.aspx" (you can find it in output directory) or to edit the file with template edit.aspx (you can find it in "C:\Program Files\ASPRunner.NET\source\1.1\(Your_programming_language)\(..)\") - then all created files "TableName_edit.aspx" will content the number of columns that you need.

500368 11/7/2005

2. To display two columns at edit page you have to edit your file "TableName_edit.aspx" (you can find it in output directory) or to edit the file with template edit.aspx (you can find it in "C:\Program Files\ASPRunner.NET\source\1.1\(Your_programming_language)\(..)\") - then all created files "TableName_edit.aspx" will content the number of columns that you need.


If anyone has more detailed informaton on setting the edit page to 2 columns, I'd sure appreciate it.

Eugene 11/9/2005

to split the page to 2 columns you have to write the following tags at the edit page:

after string
<table id="tblUpdate" cellSpacing="2" cellPadding="1" width="100%" runat="SERVER">
you have to enter: <tr><td valign="top"><table>
Please enter: </table></td><td><table> at the place where you want the second column to begin
Also you should enter : </table></td></tr> before the string: <tr><td align="right"><asp:button id="btnUpdate" ...