當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


ASP End用法及代碼示例


ASP End Method用於確保Web服務器停止處理腳本並返回當前結果。剩餘的結果將不被處理。

用法:

Response.End 

參數值:此方法不接受任何參數。

Example:在這裏,我們將停止網絡服務器以在特定位置之後繼續前進。

HTML


<html>
  <body>
      
<p> 
      GeeksforGeeks 
    </p>
  
    <!-- Calling the end method -->
    <% Response.End %>
      
<p>
    <!-- This paragraph is not sent 
         to the Browser -->
       Hello Geeks 
    </p>
  
  </body>
</html>

輸出:

GeeksforGeeks

相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 ASP End Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。