04 2013 档案

摘要:Technical SharePoint-specific experience and skills:• Must possess an in depth understanding of the capabilities of Microsoft Office SharePoint Server 2007 and SharePoint Designer 2007.• Knowledge must include architectural design, web parts development, management and troubleshooting with a focus.. 阅读全文
posted @ 2013-04-30 20:48 daishuguang 阅读(218) 评论(0) 推荐(0) 编辑
摘要:以Server-Side为中心,面向Client-Side 阅读全文
posted @ 2013-04-30 10:52 daishuguang 阅读(120) 评论(0) 推荐(0) 编辑
摘要:全部从后台的角度来思考。比如Browser-Side全部可以用Server-Side的方式来展现出来。WEB--->HTML,CSS,Javascript都可以用C#来绑定,或者输出。因此重要的是Server-Side的处理。从Server-Side向Browser-Side输出。Server-Side是中心。Browser-Side只是其中的一个Client-Side。不管Client-Side是什么形式,都是以Server-Side为中心。 阅读全文
posted @ 2013-04-30 00:41 daishuguang 阅读(212) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/top5/archive/2009/08/07/1540871.htmlhttp://bbs.csdn.net/topics/330208803http://www.cnblogs.com/polaris912/archive/2007/12/13/993699.htmlhttp://www.chinanews.com/shipin/2013/04-29/news208806.shtml 阅读全文
posted @ 2013-04-29 22:55 daishuguang 阅读(212) 评论(0) 推荐(0) 编辑
摘要:根据路径获取文件名http://zhidao.baidu.com/question/400979349.html1 Path.GetFileName(fileName);获取目录下的文件View Code 1 string targetDirectory = AppDomain.CurrentDomain.SetupInformation.ApplicationBase + "/upload/vedio";2 string[] fileEntries = Directory.GetFiles(targetDirectory);http://www.cnblogs.com/h 阅读全文
posted @ 2013-04-29 20:20 daishuguang 阅读(135) 评论(0) 推荐(0) 编辑
摘要:HTML-------->Layout,描述页面结构:使用标记标签来描述网页Data---------->C# Bind.Javascript----->Transfer DataHTML and CSS are the fundamental technologies for building Web pages:HTML (html and xhtml) for structure, CSS for style and layout, including WebFonts.Find resources for good Web page design as well as 阅读全文
posted @ 2013-04-29 10:55 daishuguang 阅读(112) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/lerit/archive/2010/10/22/1858007.html 阅读全文
posted @ 2013-04-29 10:50 daishuguang 阅读(132) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/firefly_liu/article/details/3528163 阅读全文
posted @ 2013-04-29 09:56 daishuguang 阅读(201) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/zh-cn/library/cc754617http://book.51cto.com/art/200908/146051.htmhttp://www.cnblogs.com/arbin98/archive/2010/09/03/1816847.htmlhttp://www.cnblogs.com/yanyangtian/archive/2012/04/16/2451418.htmlhttp://msdn.microsoft.com/en-us/library/ms525832%28v=VS.90%29.aspxhttp://msdn. 阅读全文
posted @ 2013-04-29 09:44 daishuguang 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-04-29 02:12 daishuguang 阅读(158) 评论(0) 推荐(0) 编辑
摘要:http://www.blueidea.com/tech/web/2006/3494.asp 阅读全文
posted @ 2013-04-29 01:52 daishuguang 阅读(140) 评论(0) 推荐(0) 编辑
摘要:Browser--ClientServer--ClientHTMLXMLCSSXSLTJavscriptC#/Java/PHPJSONJSON 阅读全文
posted @ 2013-04-28 23:18 daishuguang 阅读(149) 评论(0) 推荐(0) 编辑
摘要:要将两者都显示出来。需要<li id="navdown" runat="server" class="down odd o5">或者将其class用<%# classname%>来动态绑定。View Code 1 <li class="odd header"><span id="bc">产品中心</span></li> 2 <li class="even"></li> 3 < 阅读全文
posted @ 2013-04-28 22:34 daishuguang 阅读(162) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/zh-cn/magazine/dd560844%28en-us,VS.100%29.aspxhttp://www.microsoft.com/taiwan/technet/iis/learn/introduction-to-applicationhostconfig.aspxhttp://www.radsoftware.com.au/articles/intellisensewebconfig.aspxhttp://www.microsoft.com/china/MSDN/library/Windev/WindowsVista/bb33 阅读全文
posted @ 2013-04-28 16:06 daishuguang 阅读(459) 评论(0) 推荐(0) 编辑
摘要:保存方式:全局变量------》要在页面之间共享但是如果用application,server这些会导致其他用户看到了相同的效果。即在page1.aspx中设置的值,能在page2.aspx中读出来。http://www.cnblogs.com/elake/archive/2010/10/29/1864460.htmlhttp://www.cnblogs.com/liukemng/archive/2010/12/04/1895966.html用session有个问题是会有过期时间,可以用cookie,在关闭浏览器后立即就失效。View Code 1 protected voi... 阅读全文
posted @ 2013-04-28 02:44 daishuguang 阅读(196) 评论(0) 推荐(0) 编辑
摘要:根据两个图片按钮进入到“产品中心”但是导航菜单要显示不一样的“菜单”----》根据图片按钮显示解决方案:动态绑定“产品中心”的url母板页中url1 <li id="li3"><a href="/product/<%# Url %>">产品中心</a></li>后台1 bool i = false;2 if(i)3 {4 url="product1.aspx";5 }6 else7 {8 ... 阅读全文
posted @ 2013-04-28 02:31 daishuguang 阅读(236) 评论(0) 推荐(0) 编辑
摘要:【六分法聪明花钱】无论月收入多少,分成六份花:第1份,用做生活费;第2份,用来交朋友,坚持一年,朋友圈就会产生价值;第3份,用来每月给父 母、爱人送份礼物;第4份,每月买本好书读;第5份,用来投资,培养财富意识;第6份,用来储蓄,稳存保底。虽然是老方法,但对不会理财的同学很有效哦! 阅读全文
posted @ 2013-04-27 19:43 daishuguang 阅读(109) 评论(0) 推荐(0) 编辑
摘要:IIS【internet信息服务(IIS)管理器】并非【IIS】component即Protocol listener------------>IIS process the request.仅仅是一个用于管理IIS的panel。它的进程是mmc.exe 阅读全文
posted @ 2013-04-27 16:47 daishuguang 阅读(135) 评论(0) 推荐(0) 编辑
摘要:http://www.microsoft.com/taiwan/technet/iis/learn/introduction-to-applicationhostconfig.aspx 阅读全文
posted @ 2013-04-27 16:24 daishuguang 阅读(103) 评论(0) 推荐(0) 编辑
摘要:http://www.microsoft.com/china/MSDN/library/Windev/WindowsVista/bb332338.mspx?mfr=true 阅读全文
posted @ 2013-04-27 15:42 daishuguang 阅读(118) 评论(0) 推荐(0) 编辑
摘要:After IIS 7.0 or IIS 7.5 starts, Windows Process Activation Service (WAS) calls the LookupAccountName function to resolve account names on the local system. If no name is succesfully resolved, the LookupAccountName function tries to resolve account names by using domain controllers (DCs) trusted by 阅读全文
posted @ 2013-04-27 15:11 daishuguang 阅读(255) 评论(0) 推荐(0) 编辑
摘要:进程是基本单位,而服务必定要以进程为基本形式来展开。服务是一种特殊的应用程序,即keep running的application.application--------------------都要以进程的形式runningservice------------------------都要以进程的形式running 阅读全文
posted @ 2013-04-27 13:21 daishuguang 阅读(822) 评论(0) 推荐(0) 编辑
摘要:怎么知道IIS有没有运行?怎么查看IIS进程? 阅读全文
posted @ 2013-04-27 13:19 daishuguang 阅读(169) 评论(0) 推荐(0) 编辑
摘要:http://www.careercup.com/resumehttp://www.careercup.com/resume 阅读全文
posted @ 2013-04-27 12:01 daishuguang 阅读(104) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/aa295787%28v=vs.60%29.aspx 阅读全文
posted @ 2013-04-27 02:11 daishuguang 阅读(154) 评论(0) 推荐(0) 编辑
摘要:有很多的进程(svchost.exe)在这里启动,同时有很多的cmd命令如:iisreset.exe 阅读全文
posted @ 2013-04-27 01:56 daishuguang 阅读(288) 评论(0) 推荐(0) 编辑
摘要:In IIS 7 and above, functionality that was previously handled by the World Wide Web Publishing Service(WWW service) alone is now split between two services:WWW service and a new service, Windows Process Activation Service(WAS). There two services run as LocalSystem in the same Svchost.exe process, a 阅读全文
posted @ 2013-04-27 01:54 daishuguang 阅读(304) 评论(0) 推荐(0) 编辑
摘要:IIS判断W3WP进程对应哪个网站IIS 6 (Win2003 )中查看某个应用程序池对应那个 W3WP.exe 进程,可以使用如下命令,输出结果类似如下:C:\WINDOWS\system32>cscript iisapp.vbs Microsoft (R) Windows Script Host Version 5.6 Copyright (C) Microsoft Corporation 1996-2001. All rights reserved. W3WP.exe PID: 1172 AppPoolId: StsAdminAppPool W3WP.exe PID: 2656 A 阅读全文
posted @ 2013-04-27 01:03 daishuguang 阅读(190) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/jnqqls/archive/2011/07/03/2096928.html 阅读全文
posted @ 2013-04-26 22:55 daishuguang 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-04-26 22:48 daishuguang 阅读(130) 评论(0) 推荐(0) 编辑
摘要:http://developer.51cto.com/art/200907/139085.htm 阅读全文
posted @ 2013-04-26 22:33 daishuguang 阅读(102) 评论(0) 推荐(0) 编辑
摘要:直接使用CMD我们可以操作很多事情,比如启动IIS,重启IIS,停止IIS重启iis服务器,开始->运行->cmd (以下列出相关操作命令):iisreset /RESTART 停止后启动iisreset /START 启动IIS (如果停止)iisreset /STOP 停止IIS (如果启动) 内容来自www.00isp.comiisreset /REBOOT 重启电脑iisreset /REBOOTonERROR 如果停止IIS失败重启电脑iisreset /NOFORCE 不用强迫IIS停止iisreset /TIMEOUT:X 在X秒后,IIS被强制停止,除非 /NOFO 阅读全文
posted @ 2013-04-26 22:28 daishuguang 阅读(198) 评论(0) 推荐(0) 编辑
摘要:world wide web publishing service通过Internet信息服务管理提供web连接和管理。windows process activation service为通过消息激活的应用程序提供进程激活、资源管理和运行状况管理服务。 阅读全文
posted @ 2013-04-26 22:19 daishuguang 阅读(161) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/zh-cn/library/cc754617 阅读全文
posted @ 2013-04-26 19:33 daishuguang 阅读(129) 评论(0) 推荐(0) 编辑
摘要:System----------->Svchost.exe--------->w3wp.exesvchost.exew3wp.exe 阅读全文
posted @ 2013-04-26 18:27 daishuguang 阅读(257) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-US/library/ms912860%28v=WinEmbedded.5%29.aspx 阅读全文
posted @ 2013-04-26 18:00 daishuguang 阅读(151) 评论(0) 推荐(0) 编辑
摘要:service-------------------->ProcessHTTP.sys SystemWAS svchost.exeW3SVC svchost.exeIIS可以理解为HTTP.sys与 svchost.exe(包括WAS、W3SVC服务).serviceProcessHTTP.sysSystemWASsvchost.exeW3SVCsvchost.exe 阅读全文
posted @ 2013-04-26 17:55 daishuguang 阅读(247) 评论(0) 推荐(0) 编辑
摘要:ProcessService display nameService nameFileDirctorypidWinows Process Activation ServiceWASC:\windows\system32 阅读全文
posted @ 2013-04-26 17:38 daishuguang 阅读(157) 评论(0) 推荐(0) 编辑
摘要:一个进程可以运行多个service。 阅读全文
posted @ 2013-04-26 17:34 daishuguang 阅读(158) 评论(0) 推荐(0) 编辑
摘要:Protocol listeners receive protocol-specific requests,send them to IIS for processing,and then return responses to requestors.For example, when a client browser requests a Web page from the Internet, the HTTP listener, HTTP.sys, picks up the request and sends it to IIS for processing. Once IIS proce 阅读全文
posted @ 2013-04-26 14:35 daishuguang 阅读(161) 评论(0) 推荐(0) 编辑
摘要:HTTP.sys as the protocol listener that listens for HTTP and HTTPS requests.HTTP.sys was introduced in IIS 6.0 as an HTTP-specific protocol listener for HTTP requests.HTTP.sys remains the HTTP listener in IIS 7 and above, but includes support for Secure Sockets Layer(SSL).Process, Services, File, Dir 阅读全文
posted @ 2013-04-26 14:15 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑
摘要:http://q.cnblogs.com/q/35810/http://www.51cto.com/html/2005/1202/12961.htm如何启动HTTP服务.HTTP服务指的就是HTTP.sys。通过命令行启动(start)-->net start httpstop:net stop http注意:这个服务在“Service Control Manager”panel中看不到,要在注册表中看:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP改完注册表要重启系统,改完web.config要重启iis。通常情况下它 阅读全文
posted @ 2013-04-26 13:50 daishuguang 阅读(240) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/lsbhjshyn/article/details/8696308netstat -ano 阅读全文
posted @ 2013-04-26 13:43 daishuguang 阅读(126) 评论(0) 推荐(0) 编辑
摘要:C:\windows\system32\inetsrv 阅读全文
posted @ 2013-04-26 12:47 daishuguang 阅读(169) 评论(0) 推荐(0) 编辑
摘要:IIS最早是单进程应用程序。IIS提供WWW服务,同时还可以使用Internet服务应用程序设计接口(Internet Service Application Programming Interface,ISAPI)开发的DLL。微软开发ISAPI的初衷是希望它能够取代Unix风格的系统所使用的CGI进程--->在这类系统中,针对每个请求,系统都需要生成一个新的CGI进程,即使在同一个CGI应用程序中也必须如此。请求1-------------------------->CGI进程请求2-------------------------->CGI进程请求3---------- 阅读全文
posted @ 2013-04-26 12:32 daishuguang 阅读(354) 评论(0) 推荐(0) 编辑
摘要:book.51cto.com/art/200908/146040.htm 阅读全文
posted @ 2013-04-26 12:22 daishuguang 阅读(287) 评论(0) 推荐(0) 编辑
摘要:HTTP system servicehttp://hi.baidu.com/xiaoduo170/item/5bc7a51a646dc5633f87ce59http://blog.sina.com.cn/s/blog_728cec480100oq4c.htmlC:\windows\system32\drivers========>*.sys(system service)http://book.51cto.com/art/200908/146051.htmProcessServiceFileDirectoryhttp.sysC:\windows\system32\drivers 阅读全文
posted @ 2013-04-26 10:19 daishuguang 阅读(189) 评论(0) 推荐(0) 编辑
摘要:1.A service application conforms to the interface rules of the Service Control Manager(SCM).2.It can be started automatically at system boot, by a user through the Services control panel applet, or by an application that uses the service functions.3.Services can execute even when no user is logged o 阅读全文
posted @ 2013-04-26 09:53 daishuguang 阅读(118) 评论(0) 推荐(0) 编辑
摘要:http://sharepoint-toolbox.com/articles/building-powerful-survey-infrastructure.html 阅读全文
posted @ 2013-04-25 14:21 daishuguang 阅读(220) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/en-us/library/hh848793.aspx 阅读全文
posted @ 2013-04-25 10:11 daishuguang 阅读(92) 评论(0) 推荐(0) 编辑
摘要:http://www.51cto.com/art/200509/3323.htm 阅读全文
posted @ 2013-04-25 09:40 daishuguang 阅读(73) 评论(0) 推荐(0) 编辑
摘要:stand-alone web server.server farm. 阅读全文
posted @ 2013-04-25 00:42 daishuguang 阅读(220) 评论(0) 推荐(0) 编辑
摘要:Feature event receivers are methods that execute when one of the following feature-related events occurs in sharepoint.installed.activated.deactivated.removed. 阅读全文
posted @ 2013-04-25 00:09 daishuguang 阅读(141) 评论(0) 推荐(0) 编辑
摘要:Application pages, site pages, master pages, page layouts.Application pages---------->VSsite pages, master pages, page layouts---------->by using SPD.modify the appearance and behavior of pages by using css,ECMAScript, and themes. 阅读全文
posted @ 2013-04-24 23:30 daishuguang 阅读(148) 评论(0) 推荐(0) 编辑
摘要:1.Webpart2.Site Page 阅读全文
posted @ 2013-04-24 22:43 daishuguang 阅读(126) 评论(0) 推荐(0) 编辑
摘要:namespace不是Types KeyWord。因此没有public,private, protected, internal, these modifies. 阅读全文
posted @ 2013-04-24 10:17 daishuguang 阅读(87) 评论(0) 推荐(0) 编辑
摘要:http://wuxiquan.62.zqname.info/home.aspx 阅读全文
posted @ 2013-04-23 23:23 daishuguang 阅读(117) 评论(0) 推荐(0) 编辑
摘要:Visual Studio is C# development tool.It include an interactive development environment,visual designers for building Windows and Web applications, a compiler, and a debugger.All of these languages provides access to the Microsoft .NET Framework,which includes a common execution engine and a rich cla 阅读全文
posted @ 2013-04-23 22:59 daishuguang 阅读(185) 评论(0) 推荐(0) 编辑
摘要:csc /out:E:\my.exe File.cshttp://msdn.microsoft.com/en-us/library/vstudio/78f4aasd.aspx 阅读全文
posted @ 2013-04-23 22:18 daishuguang 阅读(185) 评论(0) 推荐(0) 编辑
摘要:Differences Between C# Compiler and C++ Compiler OutputThere are no object(.obj) files created as result of invoking the C# compiler;output files are created directly.As a consequence of this,the C# compiler does not need a linker. 阅读全文
posted @ 2013-04-23 18:31 daishuguang 阅读(185) 评论(0) 推荐(0) 编辑
摘要:1.While the compiler does not have a seperate preprocessor,the directives described in this section are processed as if there was one;2.these directives are used to aid in conditional compilation.Unlike C and C++ directives,you cannot use these directives to create macros.3.A preprocessor directive 阅读全文
posted @ 2013-04-23 13:01 daishuguang 阅读(280) 评论(0) 推荐(0) 编辑
摘要:base Accesses the members of the base class.this Refers to the current instance of the class. 阅读全文
posted @ 2013-04-23 12:48 daishuguang 阅读(118) 评论(0) 推荐(0) 编辑
摘要:The null keyword is a literal that represents a null reference,(Note:null reference)one that does not refer to any object.null is the default value of reference-type variables.Link:http://msdn.microsoft.com/en-us/library/edakx9da%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-23 12:41 daishuguang 阅读(156) 评论(0) 推荐(0) 编辑
摘要:Deploy.batView Code 1 Powershell.exe -Command Set-ExecutionPolicy "Bypass"2 Powershell.exe -Command "& {%~dp0InstallMain.ps1}"3 PauseInstallMain.ps1View Code 1 function UpdateContentTypeChild($sitecollectionurl) 2 { 3 $sitecol=Get-SPSite $sitecollectionurl 4 $rootweb=$sitecol 阅读全文
posted @ 2013-04-23 10:45 daishuguang 阅读(223) 评论(0) 推荐(0) 编辑
摘要:1 $splist.contenttypes["News"].fieldlinks.add($fieldlink)contenttypes中添加field的方法。下面这种则不起作用1 $splist.contenttypes["News"].fields.add($spfield)http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttype.fields.aspxhttp://hongzhguan.iteye.com/blog/1456881新建一个spfieldli 阅读全文
posted @ 2013-04-23 10:42 daishuguang 阅读(152) 评论(0) 推荐(0) 编辑
摘要:contentType.ReadOnly=[System.BooLean]::False------------起作用contentType.ReadOnly=[System.BooLean]::True-------------不起作用ContentType.ReadOnly=$true----------------------------------起作用ContentType.ReadOnly=$false---------------------------------不起作用 阅读全文
posted @ 2013-04-23 10:40 daishuguang 阅读(454) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttype.fields.aspx 阅读全文
posted @ 2013-04-22 17:53 daishuguang 阅读(133) 评论(0) 推荐(0) 编辑
摘要:so you use the same familiar .NET Framework and .NET languages, the same .NET Framework and ASP.NET class libraries, and the same development tools.the same .NET Framework and .NET languages,the same .NET Framework and ASP.NET class libraries, and the same development tools. 阅读全文
posted @ 2013-04-21 23:15 daishuguang 阅读(521) 评论(0) 推荐(0) 编辑
摘要:1 public bool SendMail() 2 { 3 MailMessage myEmail = new MailMessage(); 4 myEmail.From = new MailAddress(fromMail.Text.Trim()); 5 myEmail.To.Add(toMail.Text.Trim()); 6 myEmail.Subject = subject.Text.Trim(); 7 myEmail.IsBodyHtml = f... 阅读全文
posted @ 2013-04-21 19:30 daishuguang 阅读(267) 评论(0) 推荐(0) 编辑
摘要:怎么解决 阅读全文
posted @ 2013-04-21 19:06 daishuguang 阅读(158) 评论(0) 推荐(0) 编辑
摘要:View Code 1 <script type="text/javascript"> 2 function cleartext() { 3 for (i = 0; i < window.document.forms[0].elements.length; i++) { 4 if (window.document.forms[0].elements[i].type == "text") { 5 window.document.forms[0].elements[i].value =... 阅读全文
posted @ 2013-04-21 12:35 daishuguang 阅读(208) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/Hope94/article/details/4364471 阅读全文
posted @ 2013-04-21 02:32 daishuguang 阅读(118) 评论(0) 推荐(0) 编辑
摘要:为了清除textarea的值,无法用document.getElementByTagName("textarea").value获取textarea服务器控件的值,不起作用View Code 1 document.getElementsByTagName("textarea").value = "";http://hi.baidu.com/fish1nsky/item/1dec4f49f253cce71281da3a这样就有效了View Code 1 document.getElementById("<%= conta 阅读全文
posted @ 2013-04-21 02:03 daishuguang 阅读(171) 评论(0) 推荐(0) 编辑
摘要:http://www.189works.com/article-40198-1.html 阅读全文
posted @ 2013-04-20 23:47 daishuguang 阅读(108) 评论(0) 推荐(0) 编辑
摘要:http://xinyaoxp.blog.163.com/blog/static/346773492010231101749762/http://www.jb51.net/web/42244.html 阅读全文
posted @ 2013-04-20 19:01 daishuguang 阅读(139) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/diguonianzhu/archive/2012/06/29/2569758.html 阅读全文
posted @ 2013-04-20 17:36 daishuguang 阅读(117) 评论(0) 推荐(0) 编辑
摘要:http://www.w3help.org/zh-cn/causes/RS8003 阅读全文
posted @ 2013-04-20 17:21 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑
摘要:http://developer.51cto.com/art/201009/226559.htm条件注释是IE特有的一种功能,能对IE系列产品进行单独的XHTML代码处理,注意,主要是针对XHTML,而非CSS。 阅读全文
posted @ 2013-04-20 15:32 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑
摘要:http://developer.51cto.com/art/201009/226335.htmhttp://developer.51cto.com/art/201009/226396.htmhttp://www.zhangxinxu.com/wordpress/?p=783http://www.tcreator.info/webSchool/html5_css3/make-ie-support-css3.html 阅读全文
posted @ 2013-04-20 14:26 daishuguang 阅读(141) 评论(0) 推荐(0) 编辑
摘要:http://www.189works.com/article-50898-1.htmlhttp://www.cnblogs.com/shanyou/archive/2009/08/23/1552542.html 阅读全文
posted @ 2013-04-20 12:43 daishuguang 阅读(104) 评论(0) 推荐(0) 编辑
摘要:错误信息:The project type is not supported by this installation.http://forums.asp.net/p/1260162/2355861.aspxhttp://www.cnblogs.com/xihulangzi/articles/2719972.html 阅读全文
posted @ 2013-04-20 12:39 daishuguang 阅读(255) 评论(0) 推荐(0) 编辑
摘要:http://www.red-team-design.com/how-to-solve-common-ie-bugs 阅读全文
posted @ 2013-04-20 01:54 daishuguang 阅读(160) 评论(0) 推荐(0) 编辑
摘要:http://rd.189works.com/article-110434-1.htmlhttp://www.cnblogs.com/belearner/archive/2013/02/20/2919211.htmlIE8不支持。 阅读全文
posted @ 2013-04-20 00:48 daishuguang 阅读(201) 评论(0) 推荐(0) 编辑
摘要:http://wenku.baidu.com/view/38c1df0d844769eae009ed11.htmlhttp://www.cnblogs.com/aqbyygyyga/archive/2012/05/13/2498601.html 阅读全文
posted @ 2013-04-19 23:58 daishuguang 阅读(101) 评论(0) 推荐(0) 编辑
摘要:http://blog.163.com/service80@126/blog/static/16193603020103982753370/http://www.chinaz.com/program/2009/0819/87408_2.shtml 阅读全文
posted @ 2013-04-19 23:56 daishuguang 阅读(115) 评论(0) 推荐(0) 编辑
摘要:View Code 1 context.Response.Write(@"<script>window.alert('用户名或密码错误');window.location.href='/admin/login/login.html';</script>");这样子的话会先弹出对话框,再跳转。View Code 1 context.Response.Write(@"<script>window.location.href='/admin/login/login.html';windo 阅读全文
posted @ 2013-04-19 23:50 daishuguang 阅读(206) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/fish-li/archive/2012/04/15/2450571.htmlView Code 1 <location path="admin/web"> 2 <system.web> 3 <authorization> 4 <deny users="?"/> 5 </authorization> 6 </system.web> 7 </location> 8 <location path="admin/lo 阅读全文
posted @ 2013-04-19 21:57 daishuguang 阅读(123) 评论(0) 推荐(0) 编辑
摘要:http://www.vinqon.com/codeblog/?detail/11087 阅读全文
posted @ 2013-04-19 17:24 daishuguang 阅读(114) 评论(0) 推荐(0) 编辑
摘要:View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html;charset=gb2312" /> 5 <title& 阅读全文
posted @ 2013-04-19 17:21 daishuguang 阅读(148) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE>有什么意义?不加会怎样?http://www.cnblogs.com/releaseyou/archive/2009/04/16/1437456.htmlhttp://tieba.baidu.com/p/1058553142http://www.oschina.net/question/100896_105796http://book.51cto.com/art/200907/139391.htm摘要:DOCTYPE 声明指明了DTD,用来处理实体引用。没有它,能使用的实体引用就只有&amp;、&lt;、&gt;、&apos;和& 阅读全文
posted @ 2013-04-19 14:16 daishuguang 阅读(207) 评论(0) 推荐(0) 编辑
摘要:http://zhidao.baidu.com/question/351317625.html 阅读全文
posted @ 2013-04-19 11:05 daishuguang 阅读(96) 评论(0) 推荐(0) 编辑
摘要:http://www.modern.ie/zh-cn 阅读全文
posted @ 2013-04-19 10:36 daishuguang 阅读(103) 评论(0) 推荐(0) 编辑
摘要:HTML5不支持<frameset>、<frame>,那么该怎么实现呢 阅读全文
posted @ 2013-04-19 10:32 daishuguang 阅读(101) 评论(0) 推荐(0) 编辑
摘要:HTML5 vs XHTML如何选择HTML 与HTML5以及XHTML之间的区别 阅读全文
posted @ 2013-04-19 10:21 daishuguang 阅读(116) 评论(0) 推荐(0) 编辑
摘要:经济能力永远放在前面最终的产物都是文件,因此,要以产出为目标,只不过,每个文件产物的功能不一样而已。那么每个文件之间是如何协作,共同完成用户的需求以及功能的需求的呢?至于这个文件是用何种工具语言来编辑并不是最重要的。文件是最大的思考范围与层次。我们一般的工作量主要是集中在这些源文件的编辑上。一个平台:基本上也是有很多的文件,以及其语言工具组成。比如:.NET Framework 平台,SQL Server平台,SharePoint平台等等,就如C语言对于Linux操作系统之间的关系。XML文件——xml语言HTML——HTMLJS——JavascriptCSS——cssSQL——SQL 阅读全文
posted @ 2013-04-18 23:45 daishuguang 阅读(144) 评论(0) 推荐(0) 编辑
摘要:http://mybloggers.blog.163.com/blog/static/100386509200810611142232/判断浏览器是否为“firefox” or ”Microsoft Internet Explorer“indexOf(window.navigator.appName.indexOf()>0)http://www.cnblogs.com/Timac/archive/2012/11/05/2754832.html 阅读全文
posted @ 2013-04-18 23:13 daishuguang 阅读(153) 评论(0) 推荐(0) 编辑
摘要:http://rebecca.iteye.com/blog/1173548http://hi.baidu.com/sxjlvwj/item/d45bf2905956810e924f41b2火狐不支持.innerText(其他浏览器支持但是不支持.all)View Code 1 <script type="text/javascript"> 2 function validateCode() { 3 var validatevalue = ""; 4 var codes = new Array(4); 5 var colors = new... 阅读全文
posted @ 2013-04-18 23:00 daishuguang 阅读(554) 评论(0) 推荐(0) 编辑
摘要:firefox中javascript的onclick事件会失效。点击登录直接就发送至服务器了,同时验证码也不见了。 阅读全文
posted @ 2013-04-18 21:31 daishuguang 阅读(159) 评论(0) 推荐(0) 编辑
摘要:FireFox中button中的background-image(默认border是有宽度的)解决方案:设置border-width:0; 阅读全文
posted @ 2013-04-18 21:23 daishuguang 阅读(146) 评论(0) 推荐(0) 编辑
摘要:Event 函数绑定函数至$(document).ready(function)将函数绑定到文档的就绪事件(当文档完成加载时)$(selector).click(function)触发或将函数绑定到被选元素的点击事件$(selector).dblclick(function)触发或将函数绑定到被选元... 阅读全文
posted @ 2013-04-18 16:47 daishuguang 阅读(95) 评论(0) 推荐(0) 编辑
摘要:元素选择器属性选择器 阅读全文
posted @ 2013-04-18 16:46 daishuguang 阅读(80) 评论(0) 推荐(0) 编辑
摘要:$(selector).action();美元符号定义 jQuery选择符(selector)“查询”和“查找” HTML 元素jQuery 的 action() 执行对元素的操作 阅读全文
posted @ 2013-04-18 16:43 daishuguang 阅读(113) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/libo_sina/article/details/7731995 阅读全文
posted @ 2013-04-18 16:38 daishuguang 阅读(310) 评论(0) 推荐(0) 编辑
摘要:www.cnblogs.com/shuang121/archive/2011/02/25/1965137.html 阅读全文
posted @ 2013-04-18 05:59 daishuguang 阅读(128) 评论(0) 推荐(0) 编辑
摘要:http://hi.baidu.com/jiangyangw3r/item/da0e4149dc74e70ec0161379 阅读全文
posted @ 2013-04-18 05:58 daishuguang 阅读(133) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/xd502djj/archive/2010/11/10/1874107.html 阅读全文
posted @ 2013-04-18 04:25 daishuguang 阅读(133) 评论(0) 推荐(0) 编辑
摘要:http://blog.sina.com.cn/s/blog_568e66230100zipd.html 阅读全文
posted @ 2013-04-18 00:57 daishuguang 阅读(133) 评论(0) 推荐(0) 编辑
摘要:http://www.nowamagic.net/ajax/ajax_ShowRealTime.php 阅读全文
posted @ 2013-04-18 00:53 daishuguang 阅读(409) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/hb_cattle/articles/1679478.html 阅读全文
posted @ 2013-04-17 23:35 daishuguang 阅读(142) 评论(0) 推荐(0) 编辑
摘要:http://blog.163.com/huangjian_uu/blog/static/12891973920091115104043353/ 阅读全文
posted @ 2013-04-17 23:34 daishuguang 阅读(176) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/zh-cn/magazine/system.web.security.formsauthentication.signout%28VS.90%29.aspxhttp://msdn.microsoft.com/zh-cn/cc844036 阅读全文
posted @ 2013-04-17 21:40 daishuguang 阅读(223) 评论(0) 推荐(0) 编辑
摘要:http://technet.microsoft.com/zh-cn/magazine/system.io.streamreader.readline%28VS.85%29.aspx 阅读全文
posted @ 2013-04-17 21:36 daishuguang 阅读(156) 评论(0) 推荐(0) 编辑
摘要:动态改变Web.config会导致网站重启的 阅读全文
posted @ 2013-04-17 18:38 daishuguang 阅读(243) 评论(0) 推荐(0) 编辑
摘要:标签描述DTD<head>定义关于文档的信息。STF<title>定义文档的标题。STF<meta>定义关于 HTML 文档的元信息。STF<base>定义页面中所有链接的默认地址或默认目标。STF<basefont>不赞成使用。定义页面中文本的默认字体、颜色或尺寸。TF 阅读全文
posted @ 2013-04-17 18:22 daishuguang 阅读(183) 评论(0) 推荐(0) 编辑
摘要:标签描述DTD<style>定义文档的样式信息。STF<div>定义文档中的节。STF<span>定义文档中的节。STF 阅读全文
posted @ 2013-04-17 18:20 daishuguang 阅读(155) 评论(0) 推荐(0) 编辑
摘要:标签描述DTD<!DOCTYPE>定义文档类型。STF<html>定义 HTML 文档。STF<body>定义文档的主体。STF<h1> to <h6>定义 HTML 标题。STF<p>定义段落。STF<br>定义简单的折行。STF<hr>定义水平线。STF<!--...-->定义注释。STF 阅读全文
posted @ 2013-04-17 18:18 daishuguang 阅读(120) 评论(0) 推荐(0) 编辑
摘要:$(selector).action();美元符号定义 jQuery选择符(selector)“查询”和“查找” HTML 元素jQuery 的 action() 执行对元素的操作 阅读全文
posted @ 2013-04-17 18:13 daishuguang 阅读(115) 评论(0) 推荐(0) 编辑
摘要:按照javascript的出现顺序来加载,因此,有可能在html元素没有加载下来的情况下运行javascript。因此jQuery中先执行"文档就绪函数".read();如果在文档没有完全加载之前就运行函数,操作可能失败。试图隐藏一个不存在的元素获得未完全加载的图像的大小为了防止文档在完全加载(就绪)之前运行jQuery代码,所有 jQuery 函数位于一个 document ready 函数中。1 $(document).ready(function(){2 ---jQuery funcitons go here ---3 }); 阅读全文
posted @ 2013-04-17 18:12 daishuguang 阅读(146) 评论(0) 推荐(0) 编辑
摘要:http://www.w3school.com.cn/tags/tag_fieldset.asp 阅读全文
posted @ 2013-04-17 17:45 daishuguang 阅读(127) 评论(0) 推荐(0) 编辑
摘要:Microsoft.HtmlTransMicrosoft.SharePoint.WebPartPages Namespace——Provides classes,interfaces,and members(delegates,eunmerations) for creating custom Web Parts and Web Part pages. 阅读全文
posted @ 2013-04-17 16:40 daishuguang 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Variables represent storage locations.Every variable has a type that determines what values can be stored in the variable.Local variables are variable... 阅读全文
posted @ 2013-04-17 14:31 daishuguang 阅读(155) 评论(0) 推荐(0) 编辑
摘要:C#支持两种Types:值类型和引用类型。值类型包括简单值类型(如:char,int,float),枚举类型,结构类型。引用类型包括类、接口、委托、数组。 阅读全文
posted @ 2013-04-17 14:27 daishuguang 阅读(160) 评论(0) 推荐(0) 编辑
摘要:C#: a simple,modern,object-oriented,type-safe programming language.VS is development tool. it includes an interactive development environment,visual designers for building windows and web applications,a compiler,and a debugger..NET Framwork:includes a common execution engine and a rich class library 阅读全文
posted @ 2013-04-17 11:17 daishuguang 阅读(196) 评论(0) 推荐(0) 编辑
摘要:Language:Edit-->Compile-->RunningDesign-->Develop-->Deploy宏观 :Start--------------------->Stop微观:Begin-------------------->End|DoneLanguage is just one hand.The big scope is platform.Language:C#Platform:.Net Framework,Office,Sharepoint,Database and so on.从文件的角度看:第一步(build or compile 阅读全文
posted @ 2013-04-17 00:21 daishuguang 阅读(241) 评论(0) 推荐(0) 编辑
摘要:View Code 1 <script type="text/javascript"> 2 function validateCode() { 3 var validatevalue = ""; 4 var codes = new Array(4); 5 var colors = new Array("Red", "Green", "Gray", "Blue", "Maroon", "Aqua", "Fuchsia 阅读全文
posted @ 2013-04-16 22:57 daishuguang 阅读(155) 评论(0) 推荐(0) 编辑
摘要:The compiler produces 3 types of files.1.executable(.exe)files2.dynamic-link libraries(.dll)3.code modules(.netmodule). 阅读全文
posted @ 2013-04-16 18:38 daishuguang 阅读(209) 评论(0) 推荐(0) 编辑
摘要:1.Using Fully Qualified Names:Namespaces and types have unique names,which are described by fully qualified names that indicate a logical hierarchy.2.Creating and Using C# DLLs:reference the dll methods at compilie time,linked to your program at run time. 阅读全文
posted @ 2013-04-16 18:35 daishuguang 阅读(142) 评论(0) 推荐(0) 编辑
摘要:Files:Deploy.batView Code 1 Powershell.exe -Command Set-ExecutionPolicy "Bypass"2 Powershell.exe -Command "& {%~dp0InstallMain_listcolumn.ps1}"3 PauseInstallMain.ps1View Code 1 #******************************************************************** 2 # Create Site List Instance 阅读全文
posted @ 2013-04-16 14:08 daishuguang 阅读(379) 评论(0) 推荐(0) 编辑
摘要:PowerShell 1.0:http://technet.microsoft.com/en-us/library/hh848793.aspxPowerShell 2.0:http://technet.microsoft.com/en-us/library/bb978526.aspxPowerShell 3.0:http://technet.microsoft.com/en-us/library/bb978526.aspx 阅读全文
posted @ 2013-04-16 13:26 daishuguang 阅读(152) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/aa664769%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-16 10:09 daishuguang 阅读(162) 评论(0) 推荐(0) 编辑
摘要:DLL(Dynamic linking library):Definition:A dll is linked to your program at run time.what:a library linked to your program.when:at run time.-->dynamic.Apply:---->use the unqualified class namesUsing Fully Qualified Names:Namespaces and types have unique names,which are described by fully qualif 阅读全文
posted @ 2013-04-16 09:33 daishuguang 阅读(163) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/ee476619.aspx 阅读全文
posted @ 2013-04-15 15:06 daishuguang 阅读(108) 评论(0) 推荐(0) 编辑
摘要:Application pages do not support customization, which gives them two distinct advantages over site pages. First, each application page is always compiled into a single DLL so that it performs and scales better than a site page. Second, application pages are allowed to have in-line code. Now that you 阅读全文
posted @ 2013-04-15 14:36 daishuguang 阅读(118) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/bb892189%28v=office.12%29.aspxOnce a Web application is created, it is no longer necessary to touch the file system or IIS metabase of the front-end Web server when creating, updating, and deleting sites or site collections.web application-->并不存放在File Syste 阅读全文
posted @ 2013-04-15 14:06 daishuguang 阅读(252) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/aa301738%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-15 01:00 daishuguang 阅读(124) 评论(0) 推荐(0) 编辑
摘要:http://blog.renren.com/share/263553722/1863762275所谓的预处理指令,就是用来控制编译器工作的一些指令。比如说使用预处理指令来禁止编译器编译代码的某一部分。所有的C#又处理指令都是以符号#开头的。 阅读全文
posted @ 2013-04-15 00:58 daishuguang 阅读(181) 评论(0) 推荐(0) 编辑
摘要:Relative path:相对于Application root的路径以"/"开头 阅读全文
posted @ 2013-04-12 13:54 daishuguang 阅读(124) 评论(0) 推荐(0) 编辑
摘要:ASP.NET Web Project Folder Structurehttp://msdn.microsoft.com/en-us/library/ex526337%28v=VS.100%29.aspxhttp://msdn.microsoft.com/en-us/library/ms520057%28v=office.12%29.aspxhttp://msdn.microsoft.com/en-us/library/3yekbd5b%28v=vs.100%29.aspxhttp://msdn.microsoft.com/en-us/library/ms228122%28v=vs.80%2 阅读全文
posted @ 2013-04-12 11:12 daishuguang 阅读(152) 评论(0) 推荐(0) 编辑
摘要:aspnet_client:http://lixiao2011.blog.163.com/blog/static/178193044201211133553121/http://blog.csdn.net/jrl5365/article/details/1526884http://msdn.microsoft.com/en-US/library/k6h9cz8h%28v=VS.80%29.aspxhttp://msdn.microsoft.com/en-us/library/aa478975.aspxhttp://msdn.microsoft.com/en-us/library/aa71970 阅读全文
posted @ 2013-04-12 11:03 daishuguang 阅读(190) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/library/ee210692%28v=sql.105%29.aspxhttp://msdn.microsoft.com/en-us/library/ee637260%28v=SQL.105%29.aspxhttp://msdn.mi... 阅读全文
posted @ 2013-04-12 10:38 daishuguang 阅读(147) 评论(0) 推荐(0) 编辑
摘要:GUID全称:Global Unique Identifier(全球唯一标识符)。一种由算法生成的唯一标识。目的:产生完全唯一的数字。格式:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxx:0-9,a-f的32位的16进制数32位[0-9,a-f]的16进制数。生成算法:为了保证重复的情况不会发生,通常加入非随机的参数(如时间)。应用:windows平台:用于标识->注册表项、类及接口标识、数据库、系统目录、sharepoint。Attention:Specifically,each installer component has a unique GUID.A 阅读全文
posted @ 2013-04-11 16:13 daishuguang 阅读(172) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/jianyus/archive/2013/01/11/2856963.html 阅读全文
posted @ 2013-04-11 15:44 daishuguang 阅读(105) 评论(0) 推荐(0) 编辑
摘要:点击超链接后有阴影?或者有虚线?table中的align---->left center right规定表格相对于周围元素的对齐方式。而非内部元素的对齐样式。 阅读全文
posted @ 2013-04-11 00:59 daishuguang 阅读(256) 评论(0) 推荐(0) 编辑
摘要:<?xml version="1.0" encoding="utf-8"?>编码声明定义:encoing:标识用于文档中的字符的编码。XML解析器可以自动解析是UTF-8还是UTF-16 Unicode编码。在支持其他编码的文档中应使用此声明。eg.<?xml version="1.0" encoding="ISO-8859-1"?>Attention:该编码声明不考虑指定值的大小写。 阅读全文
posted @ 2013-04-10 17:32 daishuguang 阅读(199) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/en-us/magazine/dd727509.aspxhttp://stackoverflow.com/questions/2660355/net-4-0-has-a-new-gac-whyhttp://cosmicice.blogspot.com/2009/03/solving-compile-errors-cs0006-cs0009-in.html 阅读全文
posted @ 2013-04-10 16:45 daishuguang 阅读(149) 评论(0) 推荐(0) 编辑
摘要:Windows Folder-->Windows系统目录 阅读全文
posted @ 2013-04-10 16:32 daishuguang 阅读(146) 评论(0) 推荐(0) 编辑
摘要:The Garbage Collector servers as an automatic memory manager.It provides the following benefits:Enables you to develop your application without having to free memory.Allocates objects on the managed heap efficiently.Reclaims objects that are no longer being used,clears their memory,and keeps the mem 阅读全文
posted @ 2013-04-10 16:03 daishuguang 阅读(231) 评论(0) 推荐(0) 编辑
摘要:Automatic Memory Management----Core Services providing by CLRGarbage Collector-----Automaitic Memory Managementmanage the allocation and release of memory for an application. 阅读全文
posted @ 2013-04-09 17:01 daishuguang 阅读(155) 评论(0) 推荐(0) 编辑
摘要:http://blog.163.com/zhouchunping_99/blog/static/7837998820098441830412/http://www.cnblogs.com/pursue/archive/2009/08/15/1546968.htmlhttp://baike.baidu.com/view/1145682.htm 阅读全文
posted @ 2013-04-09 14:49 daishuguang 阅读(123) 评论(0) 推荐(0) 编辑
摘要:CLR是干什么的?An Agent that manage code at execution time,providing core services, such as memory management,thread management,remoting. 阅读全文
posted @ 2013-04-09 13:56 daishuguang 阅读(127) 评论(0) 推荐(0) 编辑
摘要:http://kenchell.blog.163.com/blog/static/26088309200972492819440/http://www.xuzihui.com/html/42-7/7324.htmhttp://www.informit.com/articles/article.aspx?p=30601&seqNum=5http://etutorials.org/Programming/.NET+Framework+Essentials/Chapter+2.+The+Common+Language+Runtime/2.2+CLR+Executables/http://et 阅读全文
posted @ 2013-04-08 17:44 daishuguang 阅读(147) 评论(0) 推荐(0) 编辑
摘要:*{margin:0px;padding:0px;}<table cellpadding="20" cellspacing="0"/>cellpadding会被*覆盖 table.t td { padding: 5px !important; }图片环绕<style> div{ width:300px; border:1pxsolidred } img{ float:left; width:100px; height:100px } </style> <div> <imgsrc="http: 阅读全文
posted @ 2013-04-05 01:42 daishuguang 阅读(401) 评论(0) 推荐(0) 编辑
摘要:CSS-Box:Width|Height|Margin|Border|paddingCSS-P:Position|Display|VisibilityCSS-F:Float 阅读全文
posted @ 2013-04-03 23:13 daishuguang 阅读(134) 评论(0) 推荐(0) 编辑
摘要:http://www.966266.com/special/ua.htmlhttp://blog.sina.com.cn/s/blog_637040180102e8by.htmlhttp://www.ua123.net/index.php 阅读全文
posted @ 2013-04-03 16:35 daishuguang 阅读(125) 评论(0) 推荐(0) 编辑
摘要:http://www.tfan.org/wp-content/slides/workers.html#1Web Workers——Javascript ConcurrencyWarning:Unresponsive ScriptA script on this page may be busy,or it may have stopped responding.You can stop the script now,or you can continue to see if the script will complete.当在HTML页面中执行脚本时,页面会变得没有响应直到脚本执行完成。什么 阅读全文
posted @ 2013-04-03 13:32 daishuguang 阅读(137) 评论(0) 推荐(0) 编辑
摘要:http://dancewithnet.com/2007/03/22/order-of-execution-of-javascript-on-web/ 阅读全文
posted @ 2013-04-03 10:57 daishuguang 阅读(104) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/diguonianzhu/archive/2012/06/29/2569758.html 阅读全文
posted @ 2013-04-02 17:04 daishuguang 阅读(172) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示