您好,登錄后才能下訂單哦!
本篇文章為大家展示了Response中AddHeader如何使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
Response.AddHeader("content-type","application/x-msdownload"); // 限制類型
Response.AddHeader("Content-Disposition","attachment;filename=文件名稱.rar");// 下載后的文件名稱
Response.AddHeader (“REFRESH”, ”60;URL=newpath/newpage.asp”)
這等同于客戶機端<META>元素:
<META HTTP-EQUIV=”REFRESH”, “60;URL=newpath/newpage.asp”>
Response.Status = “302 Object Moved”
Response.Addheader “Location”, “newpath/newpage.asp”
這等同于使用Response.Redirect方法:
Response.Redirect “newpath/newpage.asp”
Response.Status= “401 Unauthorized”
Response.Addheader “WWW-Authenticate”, “BASIC”
強制瀏覽器顯示一個username/口令對話框,然后使用BASIC驗證把它們發送回server(將在本書興許部分看到驗證方法)。
Response.Expires = 0
Response.ExpiresAbsolute = Now() - 1
Response.Addheader "pragma","no-cache"
Response.Addheader "cache-control","private"
Response.CacheControl = "no-cache
上述內容就是Response中AddHeader如何使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。