js:c#: protected string BrowType = "ie"; protected void Page_Load(object sender, EventArgs e) { System.Web.HttpBrowserCapabilities bro...
分类:
其他好文 时间:
2014-06-27 20:23:30
阅读次数:
250
利用了xmlhttp,实现代码比较简单具体实现如下:首先bin文件引入,com->microsoft xml v3.0具体代码如下:protected void Button1_Click(object sender, EventArgs e) { string FileName...
分类:
Web程序 时间:
2014-06-27 18:46:08
阅读次数:
302
注意:此文档中标注的行号和列号都是下标,从0开始 //下载模板 protected void btnDownLoad_ServerClick(object sender,EventArgs e) { //生成Excel模板 CreateExcelTemp(); //设置想要...
分类:
其他好文 时间:
2014-06-27 17:29:43
阅读次数:
659
#include"stdafx.h"#include#include#includeusingnamespacestd;classVisitor;classElement{protected:stringname;public:Element(stringname){this->name=name;...
分类:
编程语言 时间:
2014-06-27 17:09:36
阅读次数:
200
1 protected void btn_Down(object sender, EventArgs e) 2 { 3 string filePath = Server.MapPath("/TradeLog/" + txtDate.Text.Tr...
分类:
Web程序 时间:
2014-06-27 17:02:31
阅读次数:
226
权限修饰符:public:该类或非该类均可访问private:只有该类可以访问protected:该类及其子类的成员可以访问,同一个包中的类也可访问默认:相同包中的类可以访问static修饰符:1、java中没静态类,C#中有静态类2、static修饰的方法是静态方法,修饰变量就是静态变量,静态方法...
分类:
其他好文 时间:
2014-06-27 14:16:26
阅读次数:
173
protected void Page_Load(object sender, EventArgs e) { string guid = Request.QueryString["GUID"]; string sql = "select XSMC,FJMC,LJ from T_AQGL_FJ whe...
分类:
Web程序 时间:
2014-06-27 00:58:18
阅读次数:
356
#include"stdafx.h"#includeusingnamespacestd;classProgrammer{protected:Programmer*next;public:voidSetNext(Programmer*programmer){next=programmer;}virtu...
分类:
编程语言 时间:
2014-06-26 16:08:31
阅读次数:
228
This post introduces how to use the module pattern to limit the access scope of the methods of object or constructor in the module.
分类:
编程语言 时间:
2014-06-26 12:19:06
阅读次数:
231
依赖
<dependency>
<groupId>org.archive.heritrix</groupId>
<artifactId>heritrix-commons</artifactId>
<version>3.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
..
分类:
其他好文 时间:
2014-06-26 06:19:10
阅读次数:
300