当前位置: 代码迷 >> ASP.NET >> 文本框超过了单元格的大小解决方案
  详细解决方案

文本框超过了单元格的大小解决方案

热度:545   发布时间:2013-02-25 00:00:00.0
文本框超过了单元格的大小
我在用.net   2005   画页面的时候,出现了一个问题.代码如下:
<asp:MultiView   ID= "MultiView1 "   runat= "server "   ActiveViewIndex= "0 "   OnPreRender= "MultiView1_PreRender ">
                        <asp:View   ID= "View1 "   runat= "server ">
                                <table   align= "center "   height= "200 "   width= "90% ">
                                        <caption>
                                                </caption>
                                        <tr>
                                                <td   width= "20% ">
                                                        操作时间 </td>
                                                <td>
                                                                                                                <asp:TextBox   ID= "TextBox3 "   runat= "server "   Width= "100% "   Wrap= "False "> </asp:TextBox> </td>
                                                <td   align= "center "   width= "5% ">
                                                        到 </td>
                                                <td>
                                                        <asp:TextBox   ID= "TextBox4 "   runat= "server "   Width= "100% "   Wrap= "False "> </asp:TextBox> </td>
                                        </tr>
                                </table>
  相关解决方案