c datatablee横向动态显示数据问题?

C# - 随笔分类 - 悟生慧 - 博客园
随笔分类 - C#
摘要: using Susing System.Dusing System.IO;using System.Rusing System.Windows.Fusing Excel=Microsoft.Office.Interop.Ena...
摘要: private void txt_Chinese_TextChanged(object sender, EventArgs e) { txt_PinYIn.Text = //调用拼音类的GetABC方法得到拼音字符串 new Pin...
摘要: private void btn_GetCount_Click(object sender, EventArgs e) { int P_scalar = 0;//定义值类型变量并赋值为0 Regex P_regex = //创建正则表达式对...
摘要: List conList= new List(); List listII = new List(); int m = 0; for (int i = 0; i & conList.C i++) { string i_value = (string)conList[i]; for (int j = 0; j & conList.C j++) { ...
摘要: /// /// XSD文件校验XML /// /// public ArrayList ECSValueValidation() { ArrayList al = new ArrayList(); try { //doc是XmlDocument对象 doc.Load(m_xmlURL); } catch (System.Exception ex) ...
摘要: using S using System.Collections.G using System.T using System.C namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Queue qu = new Queue(); Queue qu2 = new Queue(); foreach (int...
摘要: C# 操作XmlDocument文档1.第一步选择文件目录string FileName=string.ESaveFileDialog sfd=new SaveFileDialog();if(sfd.ShowDialog() == DialogResult.OK){ FileName = sfd.FileN }FileS//判断文件是否存在if(!File.Exists(FileName)){ fs = File.Create(FileName); fs.Close();}2.创建文件的声明XmlDocument xmlDoc = new XmlDocume
摘要: 原文转载:/finehappy/archive//1628385.html在这个例子中我们将使用VS 2010 U 创建一个WCF服务,其中会了解[DataContract] [ServiceContract] 等特性。 内置的 WCFSVCHost ,并使用“WCF测试客户端”来测试我们创建的服务。注意下面的所有类、接口及方法都添加了public 的访问级别。一,建立一个WCF服务库创建一个WCF服务库项目,在解决方案中会自动为我们生成两个类文件“IService.cs”和“Service.cs”。这两个类文件是两个WCF示例文
摘要: 可变性和泛型接口//IWrapper&T&接口定义了SetData和GetData方法 interface IWrapper&T& { void SetData(T Data); T GetData(); } //围绕指定的类型提供了一个简单的包装器(wrapper). class Wrapper&T& : IWrapper&T& { private T storedD /// &summary& /// 获取数据 /// &/summary& /// &pa...
摘要: System.Data.DataTable dt = new System.Data.DataTable(); DataColumn FileN DataColumn FileD public FrmGetFileDirectory() { InitializeComponent(); } /// &summary& /// 获取文件目录及文件全称 /// &/summary& /// &param nam...
摘要: /// &summary& /// 将DataTalbe导出到Excel中 /// &/summary& /// &param name=&dt&&&/param& /// &param name=&ProjectName&&生成的Excel的Sheet的名字&/param& /// &param name=&filePath&&保存的路径&/param& public static void Export(System.Data.Data
摘要: using Susing System.Collections.Gusing System.Lusing System.Wusing System.Web.Musing System.Cnamespace MvcApplicJson.Controllers{ [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData[&Messa...
摘要: static int[] intA//定义要排序的数组 #region 两个数互换位置 /// &summary& /// 两个数互换位置 /// &/summary& /// &param name=&left&&第一个数&/param& /// &param name=&right&&第二个数&/param& static void Change(ref int left, ref int right) {//临时变量 temp =//记
摘要: /// &summary& /// 上传文件 /// &/summary& /// &param name=&fileinfo&&需要上传的文件&/param& /// &param name=&targetDir&&目标路径&/param& /// &param name=&hostname&&ftp地址&/param& /// &param name=&username&&ftp用户名&/param
摘要: /// &summary& /// 返回指定目录下的所有文件信息 /// &/summary& /// &param name=&strDirectory&&&/param& /// &returns&&/returns& public List&FileInfo& GetAllFilesInDirectory(string strDirectory) { List&FileInfo& listFiles = new List&FileInfo&(); //保存所有的
摘要: (拷贝直接可以使用,适合大批量资料, 上万笔) /// &summary& /// 导出Excel /// &/summary& /// &param name=&dt&&&/param& public void SaveExcel(System.Data.DataTable dt) { Microsoft.Office.Interop.Excel.Application appexcel = new Microsoft.Office.Interop.Excel.Application(); System.Reflection
摘要: Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.ApplicationClass();导致结果如下:类型“Microsoft.Office.Interop.Excel.ApplicationClass”未定义构造函数 无法嵌入互操作类型“Microsoft.Office.Interop.Excel.ApplicationClass”。请改用适用的接口。解决办法是将引用的DLL:Microsoft.Office.Interop.E的嵌入互操作类型改为false,就
摘要: 介绍两种途径将数据从EXCEL中导入到SQL SERVER。原文转载自:http://space.itpub.net//viewspace-545029一、 在程序中,用ADO.NET。代码如下://连接串string strConn = &Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=& + [EXCEL文件,含路径] + &;&;OleDbConnection conn = new OleDbConnection(strConn);
摘要: 通道闲置时间太久 也会出错~!配置文件中的receiveTimeout=&00:30:00&设置为30分钟。把InactivityTimeout也设置为30分钟就可以。InactivityTimeout MSDN上的解释为:获取或设置服务在关闭之前保持非活动状态的时间间隔。如果想让客户端和服务器端保持长连接时,则将receiveTimeout设置的尽量大,例如1个小时。详情:http://blog.csdn.net/sweetwxh/article/details/6738650看到下面的说明后解决此问题http://social./Fo
摘要: xml文件的生成操作选择内容(Content) - 不编译该文件,但将其包含在“内容”(Content) 输出组中。编译(Compile) - 将该文件编译到生成输出中。此设置用于代码文件。 嵌入资源(Embedded Resource) - 将该文件作为 DLL 或可执行文件嵌入主项目生成输出中。内容的读写和运行目录下的其他文件没有区分。编译和嵌入资源读写,需要用到,例如:GetType().Assembly.GetManifestResourceStream(assembleName +&.AppDesc.xml&);
摘要: void textBox2_KeyDown(object sender,KeyEventArgs e) { Control ctr= (Control) switch (e.KeyData) { case Keys.Right: if (ctr.Right == 0) { MessageBox.Show(&已到顶&); } else ...
摘要: 数据库中有表backgroundimage(背景图片表),backgroundpoint(图片坐标表),systemheadimage(头像表),分别存放的背景,坐标及头像,我现在要对应遍历出三表相关信息并合成一张图片,合成方法我已经做好,如下代码:C# code原文转自:http://club.itqun.net/showtopic-257319.htmlusing Susing System.Collections.Gusing System.Tusing System.Dusing System.Drawing.Drawing2D;name
摘要: 新建工程中有两个项目一个是Web服务应用程序 如TestWebService 另一个是WinForm应用程序 如TestFormusing Susing System.CponentMusing System.Dusing System.Lusing System.Wusing System.Web.Susing System.Web.Services.Pusing System.Xml.Lnamespace TestWebService{ /// ...
摘要: /// &summary& /// 获取UserInfo泛型集合 /// &/summary& /// &param name=&connStr&&数据库连接字符串&/param& /// &param name=&sqlStr&&要查询的T-SQL&/param& /// &returns&&/returns& public IList&UserInfo& GetUserInfoAll(string connStr, string sqlStr)
摘要: using Susing System.Dusing System.Security.Cusing System.Tusing System.Tnamespace 命名空间{ /// &summary& /// Represents an ObjectId (see also BsonObjectId). /// &/summary& [Serializable] public struct ObjectId : IComparable&ObjectId&, IEquatab
摘要: 1.寻找入口方法 Global.asax文件 URL路由路由名称 带有参数的URL2.寻找Controller3.寻找Action一个Controller可以包含多个Action, MVC模式中Controller角色的具体实现逻辑都是在Action中的.4.寻找View5.页面展示三、Routing的作用回来看我们的Url: localhost/home/indexlocalhost是域名, 所以首先要去掉域名部分: home/index对应了上面代码中的这种URL结构: {controller}/{action}/{id}因为我们建立了这种Url结构的识别规则, 所以能够识别出 Contr
摘要: 控制 SplitContainer 是横向分割窗体还是纵向分割窗口是由 SplitContainer 的 Orientation 属性决定的。this.splitContainer1.Orientation=Orientation.Hthis.splitContainer1.Orientation = Orientation.V
摘要: 图片填充整个PictureBox只需要设置属性pictureBox.SizeMode = PictureBoxSizeMode.StretchI
摘要: 如果需要给TreeNode绑定自己想要的属性解决办法? 自定义TreeNode 继承自.net的TreeNode后 添加属性如: public class CustomTrNode : TreeNode { /// &summary& /// 属性1:控件类型 /// &/summary& public object ControlType { } /// &summary& /// 属性2:父ID /// &/summary& public object ParentID { } }在 NodeMouse
摘要: /Forums/es-ES/295/thread/5c7c219c-f41f-49ca-b74d-ef71c6d2f06b自行解决,function afteradd() { var div = document.getElementById('gvdiv'); div.scrollTop = div.scrollH }增加完行后执行ScriptManager.RegisterStartupScript(this, this.GetType(), &&, &&script la
摘要: 转载自:http://spirit---moon./blog/static//一,不规则WINFORM窗体Author:unknown From:Internet在以前版本的Visual Basic或Visual C++中,创建不规则窗体和控件是一件很复杂的事,不仅需要调用大量API函数而且工作量也不小。不过,现在在Visual C#下,情况就完全不同了。运用Windows Forms你就可以很轻易地创建出一个不规则的窗体以及窗体上的控件。一个具有不规则窗体和控件的应用程序肯定会更吸引广大的用户,微软的Windows Me
摘要: 下载dotnetfx35setu.exe/Files/chaobaojun/AspNetMVC1.rarp文件。然后下载AspNetMVC1.msi/Files/chaobaojun/dotnetfx35setup1.rar安装下都可以用了!原文转自:/chaobaojun/archive//1612287.html
摘要: using Susing System.Windows.Fnamespace MasterSoft.WinUI{ ///&summary& /// DataGridView 中的日历列 ///&/summary& ///&example & /// DataGridViewCalendarColumn ordBillSubConsignmentDateDataGridViewCalendarColumn = new DataGridViewCalendarColumn(); /// ordBillSubConsignmentDateDa
摘要: /// &summary& /// 合并GridView中某列相同信息的行(单元格) /// &/summary& /// &param name=&GridView1&&GridView&/param& /// &param name=&cellNum&&第几列&/param& public static void GroupRows(GridView GridView1, int [] cellNum)//已经改动过了现在是对指定多列后把相同信息合并 { //int []arr
摘要: http://ufo-crackerx./ 全球最大编程控件补丁仓库/support/samples/excel.aspx资源网站/springSky/archive//2107108.html博客园关于Devexpress 的xtraReports学习可制作复杂表头Spreadsheet.XMLData 字符串类型的属性,可用来获得或设置XML格式的电子表格内容。Spreadsheet.Range 该方法接受一个区域引用(例如A1:B2或A:B)
摘要: 第一步:拖一个printDocument控件到界面。打印按钮的代码:C# CODE:privatevoid button1_Click(object sender, EventArgs e)//执行打印 { PrintDialog MyPrintDg =new PrintDialog(); MyPrintDg.Document = printDocument1; if (MyPrintDg.ShowDialog() == DialogResult.OK) { try { printDocument1.Print(); } catch { //停止打印 printDocument1.PrintC
摘要: zedgraph相关链接:http://download.csdn.net/tag/zedgraphhttp://download.csdn.net/detail/wuyazhe/2591699http://download.csdn.net/detail/wuyazhe/2588529教程相关链接/view/ffcf461dc281e53a5802ff9a.html源码下载:1.http://download.csdn.net/download/liu2.http://download.csdn.net/download/s
摘要: using Susing System.Collections.Gusing System.Lusing System.Tusing System.Cusing System.Tnamespace ThreadDemo{ class Program { static void Main(string[] args) { ThreadDemo demo = new ThreadDemo(1000); demo.Action(); } } /// &summary& /// 线程同步的实例 /// &lt
摘要: 一、在报表里定义三个公式字段如:qty_head、qty_dtl、qty_foot二、给三个字段分别加上代码1. qty_head代码numbervar qty:=0; //数字currencyVar qty:=0; //金额2. qty_dtl代码 //数字currencyV //金额qty := qty + {tbOrderOut_Dtl_View.qty};3. qty_foot代码 //数字c
摘要: 原文来自:/z/q.htmusing Susing System.Dusing System.Cusing System.Wusing System.Web.Susing System.Web.UI;using System.Web.UI.WebCusing System.Web.UI.WebControls.WebPusing System.Web.UI.HtmlC/// &summary&/// TreeMa
摘要: using Susing System.Collections.GponentMusing System.Dusing System.Dusing System.Lusing System.Tusing System.Windows.Fusing System.IO;using System.Data.SqlCnamespace WindowsFormsApplication1{ /** * 两个RadioButton,分别用来让用户选择求最大值以及求最小值 rbtM
摘要: #region 全角半角转换 /// &summary& /// 转全角的函数(SBC case) /// &/summary& /// &param name=&input&&任意字符串&/param& /// &returns&全角字符串&/returns& ///&remarks& ///全角空格为12288,半角空格为32 ///其他字符半角(33-126)与全角()的对应关系是:均相差65248 ///&/remarks& public stati
摘要: using Susing System.Collections.GponentMusing System.Dusing System.Dusing System.Lusing System.Tusing System.Windows.Fnamespace WindowsFormsApplication1{ public partial class Form12 : Form { public enum RunState { running, pause, stop } priva
摘要: //SetstheToolTiptextforcellsintheRatingcolumn.voiddataGridView1_CellFormatting(objectsender,DataGridViewCellFormattingEventArgse){if((e.ColumnIndex==this.dataGridView1.Columns[&Rating&].Index)&&e.Value!=null){DataGridViewCellcell=this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIn
摘要: DataTable dt = igmbll.getAllVWShopGoodsPurMas(); foreach (DataRow Row in dt.Rows) { Row[4] = Convert.ToDecimal(Row[4].ToString()); dgvVWShopGoodPurMas.Rows.Add(Row.ItemArray);// } this.dgvVWShopGoodPurMas.DataSource =
摘要: /// &summary& /// 查找根节点(parent_ID为0的节点)的子节点 /// &/summary& /// &param name=&parent_ID&&参数,接收根节点ID即0&/param& public void bindtree(string parent_ID) { this.tvgood.Nodes.Clear(); DataTable dt = frmgb.Getdata(parent_ID); if (dt.Rows.Count & 0) { for (int i = 0; i &lt
摘要: if (dgvgood.Rows.Count & 0) { switch (MessageBox.Show(&单据已经修改,要保存吗?&, &询问&, MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2)) { case DialogResult.Cancel: case DialogResult.Yes: { //if (string.IsNullOrEmpty(cbperson.Text)) //{ // M
摘要: /// &summary& /// ArrayList转换类型为DataTable /// &/summary& /// &param name=&list&&&/param& /// &returns&&/returns& public static DataTable ToDataTableTow(IList list) { DataTable result = new DataTable(); if (list.Count & 0) { PropertyInfo[] propertys =
摘要: using Susing System.Collections.GponentMusing System.Dusing System.Dusing System.Lusing System.Tusing System.Windows.Fnamespace GoldCubePos.App{ public partial class Form1 : Form { private delegate void ShowName(object sender);//定义委托 private
摘要: C# 的 Delegate TypeDelegate 是一种函数指针,但与普通的函数指针相比,区别主要有三:1) 一个 delegate object 一次可以搭载多个方法(methods)[译注1],而不是一次一个。当我们唤起一个搭载了多个方法(methods)的 delegate,所有方法以其“被搭载到 delegate object 的顺序”被依次唤起——稍候我们就来看看如何这样做。2) 一个 delegate object 所搭载的方法(methods)并不需要属于同一个类别。一个 delegate object 所搭载的所有方法(methods)必须具有相同的原型和形式。然而,这些方
摘要: using Susing System.Collections.GponentMusing System.Dusing System.Dusing System.Lusing System.Tusing System.Windows.Fnamespace GoldCubePos.App{ public partial class Form1 : Form { public Form1() { InitializeComponent(); ToolStripControlHost
摘要: 方法一:Uri uri = new Uri(&&);this.webBrowser1.Url =方法二:System.Diagnostics.Process.Start(&&);
摘要: #region 导出Excel /// &summary& /// 导出Excel /// &/summary& /// &param name=&sender&&&/param& /// &param name=&e&&&/param& private void btnOutExcel_Click(object sender, EventArgs e) { try { foreach (System.Diagnostics.Process thisproc in System.Di
摘要: DataView view = new DataView();view.Table = DataTableA;view.RowFilter = &itemType = 'book'&;//itemType是DataTableA中的一个字段DataTableB= view.ToTable();或者:DataRow[] rows = DataTableA.Select(&itemType = 'book'&);DataTableB= DataTableA.Clone();foreach (DataRow row in rows
摘要: /// &summary& /// 给DataTable添加新的行和列 /// &/summary& public void DataTableChangeDt() { //---------********动态给DataTable添加数据*********--------- newtb = new System.Data.DataTable(); DataColumn column = new DataColumn(&column1&, typeof(string));//新增列 newtb = newtb.Columns.Add(colu
摘要: /// &summary& /// 获取DataGrid的列名 /// &/summary& /// &param name=&dt&&&/param& /// &returns&&/returns& protected string[] getDTCol(System.Data.DataTable dt) { string cols = string.E for (int i = 0; i & dt.Columns.C i++) { cols += (dt.Columns[i
摘要: List&string& num = new List&string&(); try { for (int i = 0; i & DataGrid1.Rows.Count - 1; i++) { double aa = 0; for (int j = 1; j & DataGrid1.Columns.C j++) { double bb = Convert.ToDouble(DataGrid1.Rows[i].Cells[j].Value); aa += } num.Add(aa.ToString()); } } catch (Except
摘要: //**************************************//////////////////////////////// #region 显示统计列 /// &summary& /// 显示DataGridView的统计信息 /// &/summary& /// &param name=&dgv&&&/param& /// &param name=&SummaryColumns&&要统计的列名称或数据源绑定列名称&/param& public void Sho
摘要: 据说下载安装wicrosoft .net framework 3.5 ctp就可以解决
摘要: DataTable dtES = ExperienceShopInfo.getExperienceShopAll(); CheckBox checkB public void CheckBoxNew() { for (int i = 0; i & dtES.Rows.C i++) { //Table table = new Table(); //TableRow row = new TableRow(); //TableCell cell = new TableCell(); checkBox = new CheckBox(); checkBox.AutoPostBack
摘要: Dictionary&string, string&是一个泛型 他本身有集合的功能有时候可以把它看成数组 他的结构是这样的:Dictionary&[key], [value]& 他的特点是存入对象是需要与[key]值一一对应的存入该泛型 通过某一个一定的[key]去找到对应的值 举个例子: //实例化对象 Dictionary&int, string& dic = new Dictionary&int, string&(); //对象打点添加 dic.Add(1, &one&); dic.Add(2, &two&qu
摘要: ①DataGridView中的Columns属性里面可以设置。进入“EditColumns”窗口后,在相应的列属性设置里面把SortMode属性选择为&NotSortable&② for (int i = 0; i & this.dataGridView1.Columns.Ci++) { this.dataGridView1.Columns[i].SortMode = DataGridViewColumnSortMode.NotS }
摘要: TextBox1.Text.Trim().ToString().Contains(&#&);///或者TextBox1.Text.Trim().ToString().indexof('#') =2 //从前向后 定位 # 第一次出现的位置TextBox1.Text.Trim().ToString().indexof('#',1) =2 //从前向后 定位 # 从第三个字符串 第一次出现的位置TextBox1.Text.Trim().ToString().indexof('#',5,2) =6 //从前向后 定位 # 从第5 位
摘要: 方法一:private void tBox_KeyPress(object sender, KeyPressEventArgs e){ if (e.KeyChar == 0x20) e.KeyChar = (char)0; //禁止空格键 if ((e.KeyChar == 0x2D) && (((TextBox)sender).Text.Length == 0)) //处理负数 if (e.KeyChar & 0x20) { try { double.Parse(((TextBox)sender).Text + e.KeyChar.ToString())
摘要: 方法一:随机生成不重复数字字符串 privateintrep=0;//////生成随机数字字符串//////待生成的位数///生成的数字字符串privatestringGenerateCheckCodeNum(intcodeCount){stringstr=string.Elongnum2=DateTime.Now.Ticks+this.this.rep++;Randomrandom=newRandom(((int)(((ulong)num2)&0xffffffffL))|((int)(num2&&this.rep)));for(inti=0;i&c
摘要: ///&summary& ///生成拼音简码 ///&/summary& ///&paramname=&unicodeString&&Unicode编码字符串&/param& ///&returns&拼音简码:string&/returns& publicstaticstringGetPinyinCode(stringunicodeString) { inti=0; ushortkey=0; stringstrResult=string.E//创建两个不同的encoding对象 Encodin
摘要: #region拼音编码 privatestaticint[]pyValue=newint[] { -2,-2,-2,-2,-2,-2, -2,-2,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1
摘要: public int GetBytesOfString(string str) {//获取字符串的字节数 byte[] bytes = Encoding.Unicode.GetBytes(str); int n = 0; for (int i = 0; i & bytes.GetLength(0); i++) { // 偶数位置,如0、2、4等,为UCS2编码中两个字节的第一个字节 if (i % 2 == 0) { n++; // 在UCS2第一个字节时n加1 } else { // 当UCS2编码的第二个字节大于0时,该UCS2字符为汉字,一个汉字算两个字节 if (bytes[i]
摘要: 验证电话号码的主要代码如下: public bool IsTelephone(string str_telephone){ return System.Text.RegularExpressions.Regex.IsMatch(str_telephone, @&^(\d{3,4}-)?\d{6,8}$&);}验证手机号码的主要代码如下:public bool IsHandset(string str_handset) { return System.Text.RegularExpressions.Regex.IsMatch(str_handset, @&^[1]+
摘要: 先大概介绍一下身份证号码的组成情况(来自百度):目前我国公民身份证号码由18位数字组成:前6位为地址码,第7至14位为出生日期码,第15至17位为顺序码,第18位为校验码。检验码分别是“0、1、2、……10”共11个数字,当检验码为“10”时,为了保证公民身份证号码18位,所以用“X”表示。虽然校验码为“X”不能更换,但若需全用数字表示,只需将18位公民身份号码转换成15位居民身份证号码,去掉第7至8位和最后1位3个数码。 当今的身份证号码有15位和18位之分。1985年我国实行居民身份证制度,当时签发的身份证号码是15位的,1999年签发的身份证由于年份的扩展(由两位变为四位)和末尾加了效验
摘要: ///////////////// /// &summary& /// 将DataTable进行分页并生成新的DataTable /// &/summary& /// &param name=”dt”&原DataTable&/param& /// &param name=”PageIndex”&需要的第n页&/param& /// &param name=”PageSize”&每页页数&/param& /// &returns&新的DataTable&/returns& pu
摘要: 一、asp.net中导出Execl的方法:在asp.net中导出Execl有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址输出在浏览器上;一种是将文件直接将文件输出流写给浏览器。在Response输出时,t分隔的数据,导出execl时,等价于分列,n等价于换行。 1、将整个html全部输出execl此法将html中所有的内容,如按钮,表格,图片等全部输出到Execl中。
Response.Clear();
Response.Buffer=
Response.AppendHeader("Content-Disposition","f
摘要: #region public bool ClassIsNumeric(string str):检测字符串是否是数字 /// &summary& /// 检测字符串是否是数字 /// &/summary& /// &param name="str"&string类型。待检测字符串&/param& /// &returns&bool类型。字符...
摘要: static string[] m_Data = { "A", "B", "C", "D", "E" }; static void Main(string[] args) { Dictionary&string, int& dic = new Dictionary&string, int&(); for (int i = 0; i & m_Data.L i...
摘要: private void Random(int[] arrayK){ int i = 0; int a,j; Random random = new Random(); while (i & 20) { arrayK[i]=random(100)+1;
摘要: public void ViewBind(int id) { // string curFile = "http://www./gzl/news/uploadfiles"; string curFile = "vido/media"; string vWidth = "320"; string vHeight = "245";
string vTitle = "浦东...
随笔 - 260}

我要回帖

更多关于 jquery datatable api 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信