http://localhost:3148/test2/Default7.aspx
code:
<%@ Import Namespace="System.net" %>
<%@ Import NameSpace="System.IO" %>
<script language ="vb" runat="server">
Sub Enter_click(ByVal sender As Object, ByVal e As EventArgs)
Dim wc As New WebClient()
Dim filePath As String
filePath = "c:\" & Path.GetFileName(txtURL.Text) & ".html"
wc.DownloadFile(txtURL.Text, filePath)
message.text = "已经下载,请自行检查" & filePath
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
请输入URL:
<br />
<asp:TextBox ID="txtURL" runat="server"></asp:TextBox>
<asp:Button ID ="enter" Text ="确定" OnClick="enter_click" runat="server" />
<p></p><asp:label ID="message" runat="server"/>
</div>
</form>
</body>
</html>
发表于 @ 2009年03月01日 14:07:00 | 评论( loading... ) | 举报| 收藏