首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

在线 要你拿分,该怎么解决

2012-04-05 
在线 要你拿分我的页面怎么还不能提交呢主体代码是不是太乱我的表格代码:bodytablewidth 684 border

在线 要你拿分
我的页面怎么还不能提交呢     主体代码是不是太乱

我的表格代码:

<body>
<table   width= "684 "   border= "0 "   align= "center "   cellpadding= "0 "   cellspacing= "0 ">
    <tr   bgcolor= "#669999 ">
        <td   height= "64 "   colspan= "2 "> <div   align= "center "> <span   class= "style7 "> 订购人信息 </span> </div> </td>
    </tr>
    <tr>
        <form   name= "form1 "   method= "post "   action= " ">
<td   width= "143 "   height= "39 "> <div   align= "right "> <span   class= "style11 "> 姓名: </span> </div> </td>
        <td   width= "541 "> <input   name= "xm "   type= "text "   id= "xm "   "   value= " "   style= "width:300px;height:20px "> </td>
   
    <tr>
        <td   width= "143 "   height= "39 "> <div   align= "right "> <span   class= "style11 "> 详细地址: </span> </div> </td>
        <td> <table   width= "100% "   border= "0 "   cellpadding= "0 "   cellspacing= "0 ">
            <tr>
                <td   class= "input "> <label   for= "sheng ">
                    <input   name= "sheng "   type= "text "   id= "sheng "   "   value= " "   style= "width:53px;height:20px ">
            <label   for= "sheng "> 省 </label> </td>
                <td   class= "input "> <input   name= "shi "   type= "text "   id= "shi "   "   value= " "   style= "width:53px;height:20px ">
                        <label   for= "shi "> 市(区) </label> </td>
                <td> <span   class= "input ">
                    <input   name= "xz "   type= "text "   id= "xz "   "   value= " "   style= "width:53px;height:20px ">
                    <label   for= "xz "> 县(镇) </label>
                </span> </td>
                <td> <span   class= "input ">
                    <input   name= "cun "   type= "text "   id= "cun "   "   value= " "   style= "width:53px;height:20px ">


                    <label   for= "cun "> 村 </label>
                </span> </td>
                <td> <span   class= "input ">
                    <input   name= "mph "   type= "text "   id= "mph "   "   value= " "   style= "width:53px;height:20px ">
                    <label   for= "mph "> 门牌号 </label>
                </span> </td>
            </tr>
        </table> </td>
    </tr>
    <tr>
        <td   width= "143 "   height= "39 "> <div   align= "right "   class= "style11 "> 邮编: </div> </td>
        <td> <input   name= "yb "   type= "text "   id= "yb "   style= "width:300px;height:20px "   value= " "> </td>
    </tr>
    <tr>
        <td   width= "143 "   height= "39 "> <div   align= "right "> <span   class= "style11 "> 工作单位 </span> : </div> </td>
        <td> <input   name= "gzdw "   type= "text "   id= "gzdw "   "   value= " "   style= "width:300px;height:20px "> </td>
    </tr>
    <tr>
        <td   width= "143 "   height= "39 "> <div   align= "right "> <span   class= "style11 "> 联系电话 </span> : </div> </td>
        <td> <input   name= "lxdh "   type= "text "   id= "lxdh "   "   value= " "   style= "width:300px;height:20px "> </td>
    </tr>
    <tr>
        <td   height= "39 "> <div   align= "right "   class= "style11 "> 电子邮箱: </div> </td>
        <td> <input   name= "dzyx "   type= "text "   id= "dzyx "   "   value= " "   style= "width:300px;height:20px "> </td>
    </tr>
    <tr>
        <td   height= "39 "> &nbsp; </td>
        <td   height= "39 ">
            <input   name= "Submit1 "   type= "submit "   id= "Submit1 "   style= "height:20px;   font:9pt;   "   onClick= "return   check(); "value= "确认提交 "   >        
                </form>

------解决方案--------------------


+号换成&
<form name= "form1 " method= "post " action= " ">
改成
<form name= "form1 " method= "post " action= "?action=index ">

<input name= "Submit1 " type= "submit " id= "Submit1 " style= "height:20px; font:9pt; " onClick= "return check(); "value= "确认提交 " >
改成
<input name= "Submit1 " type= "submit " id= "Submit1 " style= "height:20px; font:9pt; " value= "确认提交 " >

热点排行