摘要:
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td id="Main_tdLeftMenu" width="180" valign="top" style="display: block;"> <div id="CPHMiddle_body_menu"> <div cla 阅读全文
2011年3月1日
2011年2月23日
摘要:
iframe问题2008-01-2216:37******显示iframe内容 XHTML1.0Transitional标准不能显示 <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> 父页面:修改为 HTML4.01Transitional标准 &l 阅读全文
2011年2月8日
摘要:
“assembly” 是dll的名称“namespace” 是命名空间 “tagprefix”在页面里的名字,比如页面里放一个 文本框,asp:textbox … 那么这里的asp 就是tagprefix 。tagprefix="FCKeditorV2" 那么就是 FCKeditorV2:控件的类名 %@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %%@ Register assembly="GMDatePicker" namespa 阅读全文
2011年2月3日
摘要:
在网上找了N多相关的东西总说的不够细,现在终于找到了.可以了解web.cofig和Global.asax之间的关系以及执行的顺序.在Global.asax.cs文件中protected void Application_BeginRequest(Object sender, EventArgs e){ Application["StartTime"] = System.DateTime.Now; }再在webform1中的page_load事件中添加private void Page_Load(object sender, System.EventArgs e) { System.Date 阅读全文
2011年1月27日
摘要:
IF OBJECT_ID('tempdb..#tmp') IS NOT NULL DROP TABLE #tmpselect * into #tmp from (select ('select * from ' +name) as 'name' from sysobjects where xtype='U') qdeclare @id nvarchar(200) --定义变量来保存ID号declare mycursor cursor for select * from #tmp --为所获得的数据集指定游标open mycursor --打开游标fetch next from mycursor 阅读全文
2010年12月13日
摘要:
1.添加ICSharpCode.SharpZipLib.dll(该组件是压缩组件)2.添加一个压缩辅助类,可以压缩多个文件using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using ICSharpCode.SharpZipLib.Zip;using ICSharpCode.SharpZipLib.Checksums;namespace CSharpZipLibHelper{ public class SharpZipLibHelper { // 阅读全文
2010年11月26日
摘要:
给你参考一下, JS兼容就可以实现了, 最重要的内容我已经用红色标出:IE 与 FireFox 的 showModalDialog 在网页程序中,有时我们会希望使用者按下按钮后开启一个保持在原窗口前方的子窗口,而在IE中,我们可以使用showModalDialog来达成,语法如下 : vReturnValue = window.showModalDialog(sURL [, vArguments]... 阅读全文
2010年11月17日
摘要:
?xml version="1.0" encoding="utf-8" ?books book titlec#入门经典/title price79.00/price authorms/author /book book title id="Best"c#高级编程/title price128.00/price authorms/author /book book title type="构架"大话设计模式/title price55.00/price author中国/author /book 阅读全文
2010年11月15日
摘要:
<?xml version="1.0" encoding="UTF-8"?><books> <book> <name>哈里波特</name> <price>10</price> <memo>这是一本很好看的书。</memo> </book> <book id="B02"&g... 阅读全文
2010年11月2日