摘要: 关于php中数据提交到当前页面action的问题2011-06-21 17:45杨超★杰伦|分类:PHP|浏览695次php中数据提交到当前页面,有人action=“”,为什么不直接action=""或者action="#",难道安全问题?还是别的什么原因?我发现我写错了,是,不是$_SESSION,期待更合理的答案。一般是在提交表单的时候,我发现别人会这么写action,但我一般会偷懒给空action,所以很想知道下为什么别人会那么写。2011-06-22 16:38提问者采纳$_SERVER['PHP_SELF'] 用了这个,能够获取 阅读全文
posted @ 2014-01-27 11:21 JIN__JIN 阅读(469) 评论(0) 推荐(0) 编辑
摘要: set statistics profile onset statistics io onset statistics time ongo--select * from [V_ReqAndApproval]goset statistics profile offset statistics io offset statistics time off 阅读全文
posted @ 2014-01-22 17:05 JIN__JIN 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 解决导出中文文件名乱码的方法2011-09-07 10:20792人阅读评论(0)收藏举报stringfirefoxexceluser/// /// 转换中文excel名称,防止乱码 /// /// 中文名称 /// private static string GetToExcelName(string fileName) { string UserAgent = HttpContext.Current.Request.ServerVariables["http_user_agent"].ToLower(); if (UserAgent.IndexOf("fire 阅读全文
posted @ 2014-01-13 17:33 JIN__JIN 阅读(2488) 评论(0) 推荐(0) 编辑
摘要: 网页导出成word文档的默认视图方式问题一般保存后的word文档默认是“Web版式视图”打开,这样会给客户的感觉不是真正的word文档,必须实现打开就是“页面视图”1.修改标签:首先把原来的html标签中要加入模板:2.在之间加入以下文本:PrintfalsefalsefalsefalseEN-USZH-CNX-NONEMicrosoftInternetExplorer4这样就可以把保存的word文档默认为“页面视图”打开转自:http://www.cnblogs.com/techMichaelLee/archive/2012/11/24/2786074.html 阅读全文
posted @ 2014-01-13 12:21 JIN__JIN 阅读(3603) 评论(0) 推荐(0) 编辑
摘要: .Net数据集导出到Excel样式细节 本文的目的是总结一些在做Excel导出功能时需要注意的样式细节。使用环境是Asp.Net,数据集的形式是Html Table,Excel还是识别一些CSS代码的,所以我们就来总结一下。 1.记得为Table添加样式style="border-collapse:collapse;",这样使得表格边框自动合并,是边框不至于过粗。 2.如果为表格加细边框,不要使用style="border:solid 1px Black;",请使用style="border:solid .5pt Black;"。(使 阅读全文
posted @ 2014-01-11 14:11 JIN__JIN 阅读(596) 评论(0) 推荐(0) 编辑
摘要: ---导出excel public static void DataTableToExcelXjd(DataTable dt, string Title, string TmpColsName) { HttpResponse resp = System.Web.HttpContext.Current.Response; string ExcelName = Title + DateTime.Now.ToString("yyyyMMddHHmmss"); resp.ContentEncoding = System.T... 阅读全文
posted @ 2014-01-11 11:32 JIN__JIN 阅读(331) 评论(0) 推荐(0) 编辑
摘要: JavaScriptconstructor属性JavaScript Array 对象参考手册定义和用法constructor属性返回对创建此对象的数组函数的引用。语法object.constructor实例例子 1在本例中,我们将展示如何使用constructor属性:输出:This is an ArrayTIY例子 2在本例中,我们将展示如何使用constructor属性:输出:function employee(name, jobtitle, born){this.name = name; this.jobtitle = job; this.born = born;} 阅读全文
posted @ 2013-12-30 16:42 JIN__JIN 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1.[代码].NET 2.0using System.Diagnostics;private Stopwatch stw = new Stopwatch();private void Form1_Load(object sender, EventArgs e){stw.Start();}private void Form1_FormClosing(object sender, FormClosingEventArgs e){DialogResult dr = MessageBox.Show("真的要退出?", "退出", MessageBoxButton 阅读全文
posted @ 2013-12-26 17:00 JIN__JIN 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 详细介绍http://www.cnblogs.com/jcz1206/articles/2730793.html ---摘录别人的using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace StudyConsoleApplication{ public class Heater1 { public delegate void BEventHandler(Object o,BEventArgs b); public event BEv... 阅读全文
posted @ 2013-12-26 14:16 JIN__JIN 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 本地测试地址例如http://localhost:6541/TreeExam/AuthorityTreeTreeExam 是TreeExamControllerAuthorityTree是TreeExamController内的AuthorityTree()方法InitTree()方法未读取xmlInitTree2()和InitTree3()两种方法读取xml----------------------Views---------AuthorityTree.cshtml------------------------------@{ Layout = null;} Authori... 阅读全文
posted @ 2013-12-23 17:15 JIN__JIN 阅读(746) 评论(0) 推荐(0) 编辑