仓酷云

标题: ASP网页设计Asp.Net控件加载毛病的办理办法 [打印本页]

作者: 再现理想    时间: 2015-1-16 22:35
标题: ASP网页设计Asp.Net控件加载毛病的办理办法
大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧开辟基于Asp.Net的体系,最后利用R.a.dTreeview2.5,常常会呈现控件没法加载的情形。原觉得是控件自己的成绩,可厥后将R.a.dTreeview晋级到3.0版,仍是没法办理。往Terelik官方网站看了F.A.Q,也没有提到这个成绩。厥后发明,当呈现控件没法加载的情形以后,只需Restart体系,大概等一会儿从头编译实行程序,控件没法加载的情形即消散了。岂非是Framework的成绩?怕我们编程太累,让我们两头歇息一下?忧郁.......
明天偶尔间发明以下一篇文章,照之做了以后,成绩办理~哈

PRB:AccessDeniedErrorWhenYouMakeCodeModificationswithIndexServicesRunning
http://support.microsoft.com/default.aspx?scid=kb;en-us;329065
CAUSE
IfyourunIndexServer(Cisvc.exe),thenIndexServermayrescantheTemporaryASP.NETFilesdirectorywhileitrequestsaMicrosoftASP.NETpage.Cisvc.exethenholdsalockontheTemporaryASP.NETFilesdirectoryforonetofiveminutes.ThelengthoftimeofthelockdependsonthesizeofthedirectorythatcausestheAspnet_wp.exeprocess(orW3wp.exeprocessforapplicationsthatrunonMicrosoftInternetInformationServices[IIS]6.0)tonotloadtheparticularDLL.
RESOLUTION
IfyoudonotuseIndexServerontheserver,youcandisableit.Todoso,followthesesteps:
ClickStart,andthenclickServices.
LocateIndexingServicefromthelistofservices,andthenclickIndexingServicePropertiesfromthesubform.
OntheGeneraltaboftheIndexingServicePropertiesdialogbox,intheStartuptypedrop-downitemlist,clickDisabled.
ClickOK.
IfyouuseIndexServer,youcanexcludetheTemporaryASP.NETFilesdirectoryfromthefoldersthattheIndexServerscans.Todoso,followthesesteps:
ClickStart,pointtoAllPrograms,pointtoAdministrativeTools,andthenclickComputerManagement.
ExpandtheServicesandApplicationsnode,expandtheIndexingServicenode,andthenexpandtheSystemnode.
Right-clicktheDirectoriesfolder,pointtoNew,andthenclickDirectoryfromthesubformtoopentheAddDirectorydialogbox.
ClickBrowse,andthenlocatetheTemporaryASP.NETFilesdirectory.YoutypicallyfindtheTemporaryASP.NETfilesinthefollowingpath:c:Microsoft.NETFrameworkTemporaryASP.NETFiles
Noteistheversionof.NETFrameworkinstalledonyourcomputer.
ClickNoundertheIncludeinIndex?optionbuttons.
ClickOKtoclose.
ClosetheComputerManagementdialogbox.
RestarttheIndexingServicesservice.
MOREINFORMATION
OthersoftwarethatisdesignedtoscandirectoriesatregularintervalsmaylockthefilesthatarelocatedintheTemporaryASP.NETFilesdirectoryinamannerthatissimilartohowtheIndexingServicelocksthefiles.Examplesofsuchsoftwareincludevirusscannersandbackupsoftware.MicrosoftrecommendsthatyouseethemanufacturersmanualsfortheindividualsoftwareforinformationabouthowtodisableortoexcludetheTemporaryASP.NETFilesfromtheseservices.
本来是索引服务引发的妨碍~~
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。
作者: admin    时间: 2015-1-19 17:53
学习ASP其实应该上升到如何学习程序设计这种境界,其实学习程序设计又是接受一种编程思想。比如ASP如何学习,你也许在以前的学习中碰到过。以下我仔细给你说几点:
作者: 灵魂腐蚀    时间: 2015-1-25 16:35
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
作者: 若相依    时间: 2015-2-3 10:43
代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
作者: 谁可相欹    时间: 2015-2-8 20:16
没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。
作者: 因胸联盟    时间: 2015-2-26 03:53
Request:从字面上讲就是“请求”,因此这个是处理客户端提交的东东的,例如Resuest.Form,Request.QueryString,或者干脆Request("变量名")
作者: 山那边是海    时间: 2015-3-8 11:51
运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行。
作者: 老尸    时间: 2015-3-15 22:27
不是很难但是英文要有一点基础网上的教程很少有系统的详细的去买书吧,另不用专门学习vb关于vbscript脚本在asp教材都有介绍
作者: 深爱那片海    时间: 2015-3-22 17:10
跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组
作者: 再见西城    时间: 2015-3-22 17:10
下面简单介绍一下我学习ASP的方法,希望对想学习ASP的朋友有所帮助...




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2