怎樣用DW制作註冊和登錄界面?要詳細步驟。拜托各位了 3Q
前臺很好做的,只要插入壹個表單就行了,在表單裏插入壹個三行壹列的表格,第壹行先輸入“用戶”在其後面插入壹個文本字段 第二行輸入“密碼”後面插入壹個文本字段,最後壹行插入兩個按鈕,壹個提交按鈕,壹個重置按鈕,就OK了。下面是做出來後的代碼,妳可以復制它到DW代碼視圖,在設計視圖就可以看見制作好的效果 <form id="form1" name="form1" method="post" action=""> <table width="500" border="0" align="center" cellpadding="0" cellspacing="5" bgcolor="#F0F0F0"> <tr> <td height="30"><div align="center">用戶: <input type="text" name="textfield" /> </div></td> </tr> <tr> <td height="30"><div align="center">密碼: <input type="password" name="textfield2" /> </div></td> </tr> <tr> <td height="30"><div align="center"> <input type="submit" name="Submit" value="提交" /> <input type="reset" name="Submit2" value="重置" /> </div> </td> </tr> </table> </form> 如果後臺的話,那就需要有數據庫,妳必須要先學SQL查詢語句以及後臺程序!