在ASP.net(C#)中用LinkButton控件实现文件附件的下载,要求点击按钮之后,可直接下载保存
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ASP.net(C#)中用LinkButton控件实现文件附件的下载,要求点击按钮之后,可直接下载保存相关的知识,希望对你有一定的参考价值。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication2._Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript">
//下载
function downLoadField(fieldPath)
window.open(fieldPath);
return null;
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:LinkButton ID="LinkButton1" runat="server">点击下载</asp:LinkButton>
</div>
</form>
</body>
</html>
后台
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace WebApplication2
public partial class _Default : System.Web.UI.Page
protected void Page_Load(object sender, EventArgs e)
//加载LinkButton的客户端
//此处下载 Web.config 文件,你可以传递相对路径。
this.LinkButton1.Attributes.Add("onclick", "return downLoadField('softWare/VS90sp1-KB945140-ENU.exe');");
参考技术A 把linkbutton的连接地址指向 需要下载的文件
比如:http://1.xx.com/1.rar 参考技术B 建议你自己去找一个下载功能的源代码!
现在这样说是不清楚的!
ASP.NET如何在嵌套下的repeater中执行linkbutton点击事件?
前台代码:
<asp:Repeater runat="server" ID="repeater1" OnItemDataBound="repeater1_ItemDataBound">
<itemtemplate>
<asp:Label ID="LB" runat="server" Text=<%#Container.DataItem("wmlbID")%> Visible="false"></asp:Label>
<%#Container.DataItem("biaoti")%>
<asp:Repeater runat="server" ID="repeater2">
<itemtemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CssClass="linkBtn" CommandName="Inser" CommandArgument=<%#Container.DataItem ("wmcpID") %> Height="50px" Width="50px">加入购物车</asp:LinkButton>
</itemtemplate>
</asp:Repeater>
</itemtemplate>
</asp:Repeater>
后台代码:
'查询商品类别下的商品信息
Protected Sub repeater1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles repeater1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem) Then
Dim rep2 As Repeater = e.Item.FindControl("Repeater2")
Dim Mylb As Label = e.Item.FindControl("LB")
Dim MylbID As String = Mylb.Text
'生成一个NET_TO_SQL类的实例
Dim cs As New NET_TO_SQL1
'打开数据库
cs.open_MyConnection()
Dim myaa1 = cs.get_MyDataReader("select * from wmcp where wmlbID='" + MylbID + "'")
rep2.DataSource = myaa1
rep2.DataBind()
cs.MyDataReader.Close()
cs.close_MyConnection()
End If
End Sub
问题是:Repeater2的数据已经绑定好了,现在我想做的是:当我点击LinkButton1的时候,将repeater2里面的相关数据插入到数据库中,如何实现?我知道肯定会是在repeater2的ItemCommand下完成,但是嵌套下的repeater2的itemCommand事件不会写!请各位大佬帮帮忙!
以上是关于在ASP.net(C#)中用LinkButton控件实现文件附件的下载,要求点击按钮之后,可直接下载保存的主要内容,如果未能解决你的问题,请参考以下文章
asp.net 在Repeater中如何隐藏linkbutton?
如何在 ASP.NET MVC 视图中用 C# 打印出 GridView?