移除網頁的圖片標籤

某一些要求,移除網頁的圖片標籤。
作個例子吧,在網頁中,拉幾個控件,其中一個是圖片控件。html

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RemoveImageTag.aspx.cs" Inherits="RemoveImageTag" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="this is a label"></asp:Label><br />
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
        <asp:Image ID="Image1" runat="server" ImageUrl="~/Images/p.gif" />
    </div>
    </form>
</body>
</html>
View Code


瀏覽並查看源代碼:



如今,Insus.NET要作的,在網頁運行,要自動移除網頁全部<img ... />標籤。
去.aspx.cs寫一段代碼:



這樣子,就能夠在runtime時,全部圖片的標籤移除,並能夠作其它相關的動做了。運行看看:




ide

相關文章
相關標籤/搜索