易截截图软件、单文件、免安装、纯绿色、仅160KB

asp.net 中如何得到GridView 中某一列的值的和

如题  下面是代码 可以按月份查找出来,什么把其中一列的值的总和求出来最后面的那个按钮还空着请各位大虾帮忙看看
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;
using System.Data.OleDb;
using System.Data.Common;
using System.Text;

public partial class admin_SelectIntoSingle : System.Web.UI.Page
{


    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {

            MyDataBind();
        }

    }
    public void MyDataBind()
    {
        OleDbConnection MyConnection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("access.mdb"));
        OleDbDataAdapter MyCommand = new OleDbDataAdapter(@"SELECT * from [Into Single] ", MyConnection);
        DataSet ds = new DataSet();
&n


相关问答:

asp.net嵌套一个asp页面后出现的问题

我在一个ASPX页面中用 <!-- #include file="top.asp"-->嵌套了一个asp页面,但在点击按钮提交表单的时候没有任何反应,是不是两个FORM的原因造成的,top.asp里面也有一个form,把嵌套去掉的话,运行 ......

asp.net分页问题

select top 12 * from Product where [id] not in (select top 12 [id] from Product)
这样可以分页,但是我在后面想加个条件
select top 12 * from Product where [id] not in (select top 12 [id] from Prod ......

ASP.NET打印问题

首先是webbrowser打印
怎么去掉左上角的 title; 右上角的 页码;左下角的地址;右下角的日期?分别设置。
页面内容超过纸张大小,只能打印一部分,怎么解决?有没有什么缩放功能?
其次是水晶报表的打印, ......

asp.net加sqlsever

我做了一个asp.net的网页,里边用的是sqlsever数据库,我想把他挂到局域网上,怎么把数据库绑上去?谢谢

给你一个连接字符串的写法网站,自己照着样子改
www.connectionstrings.com

http://zhidao.baidu.co ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号