- 博客(77)
- 收藏
- 关注
原创 Connectify 将Win7笔记本变成无线路由器
<br />connectify安装条件:Win7<br />官方网站:http://www.connectify.me/<br />xp无法连接connectify 的access point:可能xp系统不支持wpa2-psk,安装WindowsXP-KB893357-v2-x86-CHS试试<br /> <br />FAQ:<br />不能start hotspot:<br />1.重新安装无线网卡驱动<br />2.启动Internet Connection Sharing (ICS)服务<br /
2010-12-05 22:06:00
2228
转载 跨应用程序共享session Sharing Session Across Applications
<br />FROM:http://www.codeproject.com/KB/session/sharedsession.aspx<br />核心代码:<br />web.config<br /><httpModules><br /> <add name="SharedSessionModule" type="SharedSessionModule, SharedSessionModule"/><br /></http
2010-12-05 21:31:00
896
原创 .net中xsl转换方式 XPathDocument > XmlDocument > XmlDataDocument
http://support.microsoft.com/kb/318580XSL Transformations with XmlDataDocument May Perform More Slowly Than XPathDocument用xmlDataDocument来进行xsl转换可能要比xpathdocument 慢XmlDataDocument设计主要用来同步dataset和xml还有人做了测试http://www.cnblogs.com/bigtall/archive/2004/11/27/6
2010-12-05 21:19:00
737
原创 C#SendMail
using System.Web.Mail;MailMessage msg = new MailMessage();msg.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1;msg.Fields["http://schemas.microsoft.com/cdo/configuration/
2009-11-26 22:27:00
640
原创 money显示格式999,999,999
DECLARE @mny moneySET @mny = 123456.16SELECT SUBSTRING(convert(varchar,cast(@mny as money),1),0,CHARINDEX(.,convert(varchar,cast(@mny as money),1)) ) as MONEY
2009-11-26 22:27:00
615
转载 9 Ways to Gain Your Visitors Respect
The internet is filled with sites and they are good and bad. Some have been known for a long time and some still struggle to get the respect and fame they think they deserve. Although not all your
2009-11-26 22:25:00
451
转载 Is Your Website Color As Inviting as Your Home? Does Color Really Matter?
Weve all read the countless publications about effective web site design, outstanding written content and the never ending need for search engine optimization. But often the importance of color for
2009-11-26 22:25:00
527
转载 Why Hire a Professional to Design Your Web Site?
Creating an appealing, functional, and effective Web site is much harder than it looks. Its not simply a matter of taking a company brochure or catalog, converting the text to HTML, and throwing in
2009-11-26 22:24:00
507
转载 How To Shop for a Web Design Firm?
While few companies can boast as we do that our first ten clients are still with us today, many companies often change Web design firms to get a new perspective on how their Web presence could look a
2009-11-26 22:24:00
518
转载 Website Design With Standards For Browser Compatibility
There was a time when Internet Explorer was arguably all anyone needed by way of a browser. By being ubiquitous, Microsoft almost managed to quash its competition entirely, and other browsers were th
2009-11-26 22:23:00
392
转载 HTML - A Website Language Explained - For Over 35s
This is a very perfunctory look at the website code HTML, for those who never did any kind of Computer Studies at school and have never had the need or opportunity to look under the skirt of your a
2009-11-26 22:23:00
544
原创 Why I moved from Prototype to jQuery
http://www.quarkruby.com/2007/11/6/why-i-moved-from-prototype-to-jquery
2009-11-26 22:22:00
393
原创 Why I still prefer Prototype to jQuery
Posted By Glenn Vanderburg on January 12, 2009http://blog.thinkrelevance.com/2009/1/12/why-i-still-prefer-prototype-to-jquery
2009-11-26 22:22:00
420
原创 模糊查询, ], [, 中括号, square bracket
code:str.Replace("[", "[[").Replace("_", "[_").Replace("%", "[%").Replace("-", "[-").Replace("]", "[]").Replace("^", "[^"); sql:where field LIKE % + @vcparameter + % ESCAPE [
2009-11-26 22:17:00
767
转载 43 Web Design Mistakes You Should Avoid By Jay White
The next step was to write a short description for each one, and the result is the collection of mistakes that you will find below. Some of the points are common sense, others are quite polemic. Most
2009-11-26 22:17:00
593
原创 BUG: Internet Explorer Fails to Set the innerHTML Property of the Select Object
function fill_select1() { for(var i=0; i select1.options[i] = new Option(i,i); }} function fill_select2() { var sOpts = ""; for (var i=0;i {
2009-11-26 22:15:00
498
原创 overflow hidden td
table-layout: fixed;border-collapse: collapse;"> white-space: pre; overflow: hidden;border: solid 1px black; ">hide the content of td
2009-11-26 22:14:00
469
原创 BCP
BCP "select * from dbCheck.dbo.tablename with(nolock)" queryout D:/tbl -S172.17.1.1 -Usa -Psa -N BCP dbname.dbo.tablename in "D:/tbl" -S172.17.1.1 -Usa -Psa -N
2009-11-26 22:13:00
421
原创 ActiveReports Error
Failed to open the Default printer is not set. printer, System error number: 1801Printer does not support the given paper size Resolve: rpt.Document.Printer.PrinterName = string.Empty;rpt.PageSet
2009-11-26 22:13:00
1145
原创 Best Practices for Speeding Up Your Web Site
http://developer.yahoo.com/performance/rules.html
2009-11-26 22:13:00
356
原创 ASP.NET Disable Submit Button on Click
UseSubmitBehavior="false" OnClientClick="document.getElementById(ibtn).disabled=true" OnClick="ibtn_Click" />
2009-11-26 22:12:00
523
原创 The remote host closed the connection. The error code is 0x80072746.
1. set Page:Buffer="false" 2. in the .ashx set IsReusable = "false"3. set Response.BufferOutput = true;
2009-11-26 22:11:00
4324
1
原创 Switching from Prototype to jQuery
http://aleembawany.com/2009/01/16/switching-from-prototype-to-jquery/
2009-11-26 22:10:00
326
原创 MooTools vs JQuery vs Prototype vs YUI vs Dojo Comparison Revised
http://blog.creonfx.com/javascript/mootools-vs-jquery-vs-prototype-vs-yui-vs-dojo-comparison-revised
2009-11-26 22:09:00
498
原创 Understanding session state modes + FAQ
http://forums.asp.net/p/7504/7504.aspx
2009-11-26 22:08:00
283
原创 How to Size Text in CSS by Richard Rutter
http://www.alistapart.com/articles/howtosizetextincss/
2009-11-26 22:08:00
321
转载 MD5 VB
MD5 16-bit,32-bits algorithm implemented in C# Private Const BITS_TO_A_BYTE As Integer = 8 Private Const BYTES_TO_A_WORD As Integer = 4 Private Const BITS_TO_A_WORD As Integer
2007-10-10 10:04:00
607
转载 ASP.NET中常用的26个优化性能方法
1. 数据库访问性能优化 数据库的连接和关闭 访问数据库资源需要创建连接、打开连接和关闭连接几个操作。这些过程需要多次与数据库交换信息以通过身份验证,比较耗费服务器资源。ASP.NET中提供了连接池(Connection Pool)改善打开和关闭数据库对性能的影响。系统将用户的数据库连接放在连接池中,需要时取出,关闭时收回连接,等待下一次的连接请求。 连接池的大小是有限的,如
2007-09-06 09:44:00
529
转载 ContentType类型
ContentType类型 ".*"="application/octet-stream"".001"="application/x-001"".301"="application/x-301"".323"="text/h323"".906"="application/x-906"".907"="drawing/907"".a11"="application/x-a11"".acp"="audio
2007-08-17 13:20:00
732
转载 Javascript中最常用的55个经典技巧
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键no 可用于Table2. 取消选取、防止复制3. onpaste="return false" 不准粘贴4. oncopy="return false;" oncut="return false;" 防止复制5. IE地址栏前换成自己的图标6. 可以
2007-08-16 08:24:00
511
原创 OCX读取客户端信息
1,用VB编写OCX控件 函数返回值为字符串 Public Function main() As String 2,打包生成CAB
2007-08-13 12:33:00
968
转载 linux学习笔记
linux目录架构/ 根目录/bin 常用的命令 binary file 的目錄/boot 存放系统启动时必须读取的档案,包括核心 (kernel) 在内 /boot/grub/menu.lst GRUB设置 /boot/vmlinuz 内核 /boot/initrd 核心解壓縮所需 RAM Disk/dev 系统周边设备 /et
2007-08-11 09:55:00
551
转载 惠普 hp3414 笔记本 电脑 驱动 drivers
下面是驱动的下载地址:(注:请安下面的排列顺序安装)--------------------------------------------------------------------------------芯片组--包含网卡驱动http://h50176.www5.hp.com/local_drivers/24696/sp33031.exe声卡微软通用音
2007-08-07 15:27:00
3937
转载 Windows Server 2003 安装IIS和ASP.NET的方法
Windows Server 2003IISとASP.NETのインストール方法 [コントロールパネル]-[プログラムの追加と削除]をダブルクリックし、[Windowsコンポーネントの追加と削除]をクリック
2007-08-07 13:17:00
905
转载 页面间传值方法
一、目前在ASP.NET中页面传值共有这么几种方式:1、表单提交, .... form1.submit(); .... 此种方在ASP。NET中无效,因为ASP。NET的表单总是提交到自身页面,如果要提交到别一页面,需要特殊处理。2、链接地址传送接收页面: string str = Request["param1"]3、Session共享发送页面:Session(
2007-07-12 12:15:00
662
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人