• 大小: 342KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-04
  • 语言: 其他
  • 标签: ntko  office  控件  

资源简介

无任何限制。。。。 内容清单: 1 ocx 控件 2 安装文档 3 示例代码 ....

资源截图

代码片段和文件信息

using System;
using System.IO;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace v30CSharpdemoSQL
{

public partial class mainform : System.Web.UI.Page
{
private System.Data.SqlClient.SqlConnection conn;

protected void Page_Load(object sender System.EventArgs e)
{
conn = (System.Data.SqlClient.SqlConnection)Session[“dbConn“];
}

#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{    

}
#endregion

public string getDocListFromDatabase()
{
string sRet = @““+
@“id“+
@“Filename“+
@“size“+
@“Operation“+
@““;
string strcmd = “select * from MyUploadTable ORDER BY id“;
System.Data.SqlClient.SqlDataReader  objReader = null;
try
{
System.Data.SqlClient.SqlCommand  objCommand = new System.Data.SqlClient.SqlCommand (strcmdconn);
conn.Open();
objReader = objCommand.ExecuteReader();

while (objReader.Read())
{
sRet += ““+objReader[“id“]+““+objReader[“filename“].ToString().Trim()+““ +
objReader[“filesize“]+@“ Bytes “edit.aspx?docid=“+objReader[“id“]+@“““ target=_blank>Edit“;
}
}
finally
{
if(objReader != null)objReader.Close(); 
conn.Close();
}
return sRet;
}

public string getDocListFromDir()
{
string sRet = @““+
@“Filename“+
@“size“+
@“Operation“+
@““;
string uploadpath = Server.MapPath(Session[“uploadpath“].ToString());

DirectoryInfo di = new DirectoryInfo(uploadpath);

FileInfo[] fis = di.GetFiles();

foreach (FileInfo fiTemp in fis)
{
sRet += ““ + fiTemp.Name + ““ +fiTemp.Length +
@“ Bytes fiTemp.Name+ @“““ target=_blank>Edit“;
}
return sRet;
}


public string getHTMLListFromDir()
{
string sRet = @““+
@“Filename“+
@“size“+
@“Operation“+
@““;
string htmlPath = Server.MapPath(Session[“htmlpath“].ToString());

DirectoryInfo di = new DirectoryInfo(htmlPath);

FileInfo[] fis = di.GetFiles(“*.html“);

foreach (FileInfo fiTemp in fis)
{
sRet += ““ + fiTemp.Name +

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1568  2007-03-21 16:58  office\default.aspx

     文件       3211  2007-03-21 16:58  office\default.aspx.cs

     文件       5443  2007-03-21 16:58  office\default.aspx.resx

     文件       9244  2007-03-21 16:58  office\edit.aspx

     文件       3515  2007-03-21 16:58  office\edit.aspx.cs

     文件       1733  2007-03-21 16:58  office\edit.aspx.resx

     文件       2472  2007-03-21 16:58  office\edit.html

     文件      12021  2007-04-05 15:10  office\ntkoocx.js

     文件     310052  2007-03-21 16:58  office\OfficeControl.cab

     文件         96  2007-03-21 16:58  office\readattach.aspx

     文件       2420  2007-03-21 16:58  office\readattach.aspx.cs

     文件       1733  2007-03-21 16:58  office\readattach.aspx.resx

     文件         90  2007-03-21 16:58  office\readdoc.aspx

     文件       2751  2007-03-21 16:58  office\readdoc.aspx.cs

     文件       5317  2007-03-21 16:58  office\readdoc.aspx.resx

     文件         96  2007-03-21 16:58  office\uploaddisk.aspx

     文件       1798  2007-03-21 16:58  office\uploaddisk.aspx.cs

     文件       1733  2007-03-21 16:58  office\uploaddisk.aspx.resx

     文件         96  2007-03-21 16:58  office\uploadedit.aspx

     文件       4273  2007-03-21 16:58  office\uploadedit.aspx.cs

     文件       1733  2007-03-21 16:58  office\uploadedit.aspx.resx

     文件         98  2007-03-21 16:58  office\uploadhtmls.aspx

     文件       1713  2007-03-21 16:58  office\uploadhtmls.aspx.cs

     文件       1733  2007-03-21 16:58  office\uploadhtmls.aspx.resx

     文件      34304  2007-04-09 08:56  office\安装说明.doc

     文件      23552  2007-04-09 08:56  office\示例说明.doc

     目录          0  2008-10-04 13:48  office

----------- ---------  ---------- -----  ----

               432795                    27



............此处省略0个文件信息

评论

共有 条评论