1、網站的設計做好怎麼上傳?
網站程序根目錄下的文件全通過FTP傳上去。
垃圾的,無關緊要的,就別傳了。浪費空間。
2、網頁製作完後,不知道怎麼上傳
?
3、請教一個關於網頁設計上表單提交的問題
<form action="http://www.yoursite.com/test.asp" method="get">
請輸入你的網址:
<input type="text" name="yourname">
<input type="submit" value="提交">
</form>
-----------------------------------------
然後在網站根目錄下新建一回個test.asp文件,代碼如答下:
<%
request("yourname")
response.redirect "www.123.com/+yourname+.html"%
%>
4、請網頁設計高人指點,表單提交到哪裡去了。
你的表單呢?
<form action=""></form>
就你這部分代碼,數據是沒有提交出去的。
5、網頁設計,設計表單後,按提交,如何進入發送狀態,比如進入郵箱,准備發送。。。一般是提交結果就上面填
使用ajax提交的時候使用 beforeSend
但是也只有提交表單數據過大或者網路慢的時候才會出現的。
比如:
$.ajax({
beforeSend: function(){
// 提交前的提示.... 准備發送中....
},
complete: function(){
// 表單提交
}
});
6、網頁設計好如何上傳
註:linux/unix系統請將網頁文件上傳到htdocs目錄下,windows系統請將網頁文件上傳到根目錄下,請參考:請見我們網站的客服中心——主機問題——ftp使用手冊
7、網頁製作好後,要怎樣打包上傳? 要詳細的步驟
通過FTP上傳到您指定的伺服器 這樣就OK了
8、製作網頁怎樣搞提交按鈕
先提交到一個轉發頁面 由轉發頁給你轉asp的例子
<%
『定義郵件變數
Dim objMail,mybody
Dim thisfrom,thiscontent
』創建郵件實體
Set objMail = CreateObject("CDONTS.Newmail")
『獲得收件人EMAIL.
objMail.TO = Request("vfname")
『獲得發件人EMAIL.
objMail.From = Request("vname")
『『獲得郵件主題.
objmail.Subject = "三葉草-"&Request("vtitle")
『設定郵件類型.
objMail.MailFormat = cdoMailFormatMime
objMail.BodyFormat = cdoBodyFormatHTML
'定義HTML郵件主題
mybody= "<html>" & _
"<head> "& _
"<title>三葉草特別推薦</title>" & _
"<meta http-equiv=""Content-Type"" content=""text/html; charset=gb2312"">" & _
"<style type=""text/css"">" & _
"td,li,select,input,textarea {font-size:12px}" & _
".f7 {font-size:7px;}" & _
".f16{font-size:16px;}" & _
".f12{font-size:12px;}" & _
".f14{font-size:14px;}" & _
".f18{font-size:18px;color: #FF6600;}" & _
".title {FONT-WEIGHT: bold; FONT-SIZE: 16px; COLOR: #cc0000; FONT-FAMILY: ""Verdana""}" & _
"A {dovia:expression(this.onfocus=this.blur);}" & _
"A:link {COLOR: #333333; TEXT-DECORATION: none}" & _
"A:visited {COLOR: #333333; TEXT-DECORATION: none}" & _
"A:hover {LEFT: 1px; COLOR: #3399cc; POSITION: relative; TOP: 1px; TEXT-DECORATION: underline}" & _
"</style></head>" & _
"<body>" & _
"<table width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0"">" & _
"<tr><td height=""25"" bgcolor=""#f3f3f5"">三葉草文章推薦 此信件來自您的朋友"&Request("vname")&"</td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""25"">您的朋友 <font color=""#CC0000"">"&Request("vname")&"</font> 特別向您推薦此文章 </td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""20"">相關鏈接: "&"<a href="&nurl&" target=""_blank"">"&nurl&"</a></td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""20""><font color=""#CC0000"">朋友附言:</font>"&DvBCode(Request("vcontent"))&"</td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""25"">以下為文章內容:</td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""30"" align=""center"" bgcolor=""#f5f5f3"">"&Request("vtitle")&"</td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""25"" bgcolor=""#f5f5f3"">"&filecontent&"</td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""25"" align=""center""><p><br>" & _
"此信件來自您的朋友"&Request("vname")&",歡迎訪問<font color=""#CC0000"">三葉草</font></p>" & _
"<p>www.dovia.net</p></td>" & _
"</tr>" & _
"<tr>" & _
"<td height=""25""> </td>" & _
" </tr>" & _
"</table>" & _
"</body>" & _
"</html>"
objMail.Body =mybody
』發送郵件
objMail.send
set objMail = Nothing
『發送完成後轉向
Response.Redirect "sender.asp?action=go"
%>
9、網頁設計提交作業
發你了,好的話加分哦~