//导出按钮protected void btn_Export_Click(object
sender, EventArgs e) { Model.article art = new BLL.Common().GetModel(this.id);
WriteHtml(art.content);//a...
分类:
其他好文 时间:
2014-06-07 03:04:09
阅读次数:
299
把视图省、市、街道表单数据,封装成一个类,作为action参数。如下:
action方法参数类型: namespace MvcApplication1.Models{ public class Customer { public
string Address { get; set; } }} 在自定...
分类:
Web程序 时间:
2014-06-07 02:59:40
阅读次数:
241
#region 文件操作 /// /// 文件操作 /// /// /// private void
button3_Click(object sender, EventArgs e) { ...
分类:
其他好文 时间:
2014-05-29 04:04:51
阅读次数:
173
在多任务操作系统中,每个进程都运行在属于自己的内存沙盘中。这个沙盘就是虚拟地址空间(Virtual Address
Space),在32位模式下它是一个4GB的内存地址块。在Linux系统中,
内核进程和用户进程所占的虚拟内存比例是1:3,而Windows系统为2:2(通过设置Large-Add.....
分类:
系统相关 时间:
2014-05-29 00:10:54
阅读次数:
416
1.由地名(省份、城市、街道等)得到其对应的百度地图坐标:http://api.map.baidu.com/geocoder/v2/?output=json&ak=你从百度申请到的Key&address=北京市其对大陆主要城市的解析很好,但是有些大陆的小城市、香港、台湾的一些区域无法解析,我测试到的...
采用Gridview的OnRowDataBound属性后台protected void
gvTranslateInfo_RowDataBound(object sender, GridViewRowEventArgs e) {
if(e.Row.RowIndex>...
分类:
其他好文 时间:
2014-05-28 22:38:21
阅读次数:
265
FastReport 数据过滤在DataBind 的 OnBeforePrint 设置条件例:显示
大于0 的数据procedure MasterData1OnBeforePrint(Sender: TfrxComponent);begin
MasterData1.Visible := () > 0...
分类:
其他好文 时间:
2014-05-28 12:57:36
阅读次数:
448
#region 目录操作 /// /// 目录操作 /// /// /// private void
button2_Click(object sender, EventArgs e) { ...
分类:
其他好文 时间:
2014-05-28 08:54:33
阅读次数:
279
实验线路连接图使用 Cisco Packet Tracer6.0
构建拓扑结构图RARouter(config)#interface FastEthernet0/0Router(config-if)#ip address
192.168.10.1 255.255.255.0Router(config...
分类:
其他好文 时间:
2014-05-28 02:40:14
阅读次数:
332
1、实现原窗体消失,打开另一个窗体,关闭新窗体时则关闭程序 private void
button5_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); ...