上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: 跟踪调试了一下,发现一个比较有用的判断客户端是否ie浏览器的方法: var __nonMSDOMBrowser = (window.navigator.appName.toLowerCase().indexOf('explorer') == -1); 继续调试中... 第一种解决方案有了,定义一个这样的函数: function clientKeyPhoto() ... 阅读全文
posted @ 2008-04-16 14:13 zhangsir 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 制作页面时,有时需要在表格内插入背景图,我们可以使用CSS进行控制,代码: style="background-image:url(./images/counter_bg.jpg);background-repeat: no-repeat;background-po... 阅读全文
posted @ 2008-04-10 20:32 zhangsir 阅读(10238) 评论(1) 推荐(0) 编辑
摘要: UpFile.Fla (flash文件)以下是代码片段:fileRefListener.onSelect=function(fileRefList:FileReferenceList):Void{ uploadBtn.enabled=true; rePaintProBar("progressBar",18.0,50.0); varlist:Array=fileRefList.fileList; v... 阅读全文
posted @ 2008-04-01 19:22 zhangsir 阅读(2469) 评论(1) 推荐(0) 编辑
摘要: Übersicht von MIME-TypenDie Auswahl ist alphabetisch sortiert und erhebt keinen Anspruch auf Vollständigkeit. MIME-Typ Dateiendung(en) Bedeutung application/acad *.dwg AutoCAD-Dateien (nach ... 阅读全文
posted @ 2008-03-31 18:50 zhangsir 阅读(693) 评论(0) 推荐(0) 编辑
摘要: ScriptManager和UpdatePanel两个控件已经能够实现了客户端与服务器端的异步通信了。要想对异步操作进一步控制的话,那我们还得进一步研究PageReqeustManager类。 PageRequestManager类是客户端的类,用于协调ScriptManager和UpdatePanel控件,管理页面上的异步更新操作。通过PageRequestManager客户端的实例我们可以深入... 阅读全文
posted @ 2008-03-29 18:13 zhangsir 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 函数如下:MovieClip.prototype.smoothMove=function(sp,tx,ty){if(tx!=0)this._x=this._x+sp*(tx-this._x);//缓动if(ty!=0)this._y=this._y+sp*(ty-this._y);//缓动};MovieClip.prototype.MoveTo=function(sp,sx,sy){ //函数中第... 阅读全文
posted @ 2008-03-28 21:56 zhangsir 阅读(903) 评论(3) 推荐(0) 编辑
摘要: 方法很简单,运行Microsoft .net Framework v2.0 sdk tools (.net的命令提示工具)运行如下代码:aspnet_compiler -v / -p E:\yourcomplacation -f D:\whereToPbulishCatgy -fixednames即可 ,其中:E:\yourcomplacation 为您开发的项目的文件夹绝对路径 D:\publi... 阅读全文
posted @ 2008-03-25 14:26 zhangsir 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 下面代码把datagrid生成了word文档,并在ie显示//生成HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=RoadRepair.doc"); /?" Response.ContentType = "application/vnd.ms-word" ;//指定生成文件的... 阅读全文
posted @ 2008-03-21 09:36 zhangsir 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://livedocs.adobe.com/flash/9.0_cn/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00000048.html类型转换在将某个值转换为其它数据类型的值时,就说发生了类型转换。类型转换可以是“隐式的”,也可以是“显式... 阅读全文
posted @ 2008-03-10 17:16 zhangsir 阅读(1714) 评论(0) 推荐(0) 编辑
摘要: 在本地我们调试运行AJAX.NET程序完全没有问题,但是一旦上传到服务器就会出现很多Web.config文件异常。以下是两个最为典型的异常信息: Configuration Error Description: An error occurred during the processing of a configuration file required to service this reque... 阅读全文
posted @ 2008-03-08 10:03 zhangsir 阅读(1899) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页