⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stripimage.aspx

📁 asp.net技术内幕的书配源码
💻 ASPX
字号:
<%@ Import Namespace="System.Net" %>

<Script Runat="Server">

Sub Page_Load
  Dim wcMicrosoft As WebClient
  Dim objUTF8Encoding As UTF8Encoding  
  Dim strResponse As String

  wcMicrosoft = New WebClient
  objUTF8Encoding = New UTF8Encoding
  strResponse = objUTF8Encoding.GetString( _
    wcMicrosoft.DownloadData( "http://www.amazon.com" ) )
  strResponse = RegEx.Replace( strResponse, "(<img.*?>)", "[image]", RegExOptions.SingleLine )
  Response.Write( strResponse )
End Sub

</Script> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -