ASP清除方法用於清除或擦除緩衝的HTML輸出。此方法僅擦除響應正文,而不會影響響應標頭。當Response.buffer設置為false時,它將在調用後顯示錯誤消息。
用法:
response.Clear
參數值:它不包含任何參數。
返回值:此方法沒有返回值。
例:
<%
// Buffer set to true
response.Buffer=true
%>
<%
// call clear Method
response.Clear
%>
輸出:
None
參考文獻:
- https://docs.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525713(v=vs.90)
相關用法
- HTML DOM console.clear()用法及代碼示例
- Node.js console.clear()用法及代碼示例
- p5.js TypedDict clear()用法及代碼示例
- ASP Flush用法及代碼示例
- ASP End用法及代碼示例
- ASP BinaryRead用法及代碼示例
- ASP AppendToLog用法及代碼示例
- ASP AddHeader用法及代碼示例
- ASP Contents.Remove用法及代碼示例
- ASP Server.MapPath用法及代碼示例
- ASP Server.Execute用法及代碼示例
- ASP Server.Transfer()用法及代碼示例
- ASP Server.HTMLEncode()用法及代碼示例
- ASP CreateFolder()用法及代碼示例
- ASP BuildPath用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 ASP Clear Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。