摘要:
//原创aloxy //2007.12.19 //本地路径转换成URL相对路径 private string urlconvertor(string imagesurl1) { string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath... 阅读全文
摘要:
最近想做一个flash的菜单与asp.net进行交互. 参考了很多网上的资料,最后有以下心得,写出来记一下。 一、动态加载菜单 菜单的内容如下(menu.xml): 如果动态加载呢? 1)把以menu.xml文件放到网站的根目录之下,然后在flash的as中写如下的as脚本. mymenu = new XML(); mymenu.load("me... 阅读全文
摘要:
生成的缩略图是Image对象,如何转成byte数组存进数据库中呢?? 不采取保存为文件再从文件里读的折中方法。 System.Drawing.ImageConverter ic = new ImageConverter(); //用于将 Image 对象从一种数据类型转换为另一种数据类型的类 byte[] temp = new ... 阅读全文
摘要:
添加html内容(insertAdjacentHTML和insertAdjacentText) dhtml提供了两个方法来进行添加,insertAdjacentHTML和insertAdjacentText insertAdjacentHTML方法:在指定的地方插入html标签语句。 原型:insertAdjacentHTML(swhere,stext) 参数: ... 阅读全文
摘要:
在checkLogin.cs里有check方法: public static void check(Page aPage) { if (aPage.Session["ok"] == null || aPage.Session["ok"].ToString() != "ok") { aPage.Response.Redirect("lo... 阅读全文
摘要:
//返回[字符串集合1]中是否包含[字符串2] if (字符串集合1.Contains(字符串2)) {} //比较两个字符串是否一样,true代表不区分大小写,返回结果为int String.Compare(string, string, true) 阅读全文
摘要:
- 阅读全文
摘要:
【摘要】 这个存储过程的功能比较强大,用在项目中非常的适用,尤其是在百万级数据上。 【全文】 SQL代码 CREATE PROCEDURE prcPageResult -- 获得某一页的数据 -- @currPage int = 1, --当前页页码 (即Top currPage) @showC... 阅读全文
摘要:
属性/方法名: 说明: [基本属性] URL: (String); 指定媒体位置,本机或网络地址 uiMode:(String); 播放器界面模式,可为Full, Mini, None, Invisible playState:(integer); 播放状态,1=停止,2=暂停,3=播放,6=正在缓冲,9=正在连接,10=准备就绪 enableContextMenu:(... 阅读全文
摘要:
PlayState 的值 0 = 1=停止 2=暂停中 3=正在播放 4=向前搜索 5=向后搜索 6=缓冲中 7=等待中 8=播放完毕 9=转换曲目 10=准备就绪 Media Player Player.playState事件 Value ... 阅读全文