摘要: try { if (Request.HasFormContentType) { var form = Request.Form; var file = Request.Form.Files[0]; var fullhost = form["fullhost"]; var uid = form["ui 阅读全文
posted @ 2023-05-17 00:23 unstable 阅读(44) 评论(0) 推荐(0) 编辑
摘要: declare @tree table(id nvarchar(50),lv int,pid varchar(max),tname nvarchar(50),pname nvarchar(max))begin declare @l int set @l=0 insert @tree select [ 阅读全文
posted @ 2022-07-01 23:52 unstable 阅读(507) 评论(0) 推荐(0) 编辑
摘要: https://files.cnblogs.com/files/unstable_li/Windows6.1-KB2533623-x64.rar 阅读全文
posted @ 2021-01-27 18:32 unstable 阅读(541) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2012-07-10 14:35 unstable 阅读(414) 评论(3) 推荐(0) 编辑
摘要: /// <summary> /// This function checks whether the file is in use or not. /// </summary> /// <param name="filename">File Name</param> /// <returns>Return True if file in use else false</returns> public static bool IsFileInUse(string filename) { bool lock 阅读全文
posted @ 2012-03-19 11:02 unstable 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 记 得几年前如果你需要添加一些互动元素到你的网站中用来改善用户体验? 是不是立刻就想到了flash实现?这彷佛年代久远的事了。使用现在最流行的web技术 HTML5,CSS3和jQuery,同样也可以实现类似的用户体验。而且使用这些特性将会比使用flash更加有效。也许你可能刚知道Adobe停止开 发移动版flash的消息,虽然在桌面中我们还拥有大量的flash的应用,但是随着HTML标准的完善,可能flash也要退出历史舞台了。在今天这篇 文章中,我们 将介绍一些非常实用的教程,技巧和资源来帮助大家构建一个更加丰富的用户界面。请大家给积极我们留言!您的支持是我们的最好的动力!表单类jQuer 阅读全文
posted @ 2012-03-08 14:12 unstable 阅读(136) 评论(0) 推荐(0) 编辑
摘要: /**////<summary>///Ilist<T>转换成DataSet///</summary>///<paramname="list"></param>///<returns></returns>publicstaticDataSetConvertToDataSet<T>(IList<T>list){if(list==null||list.Count<=0){returnnull;}DataSetds=newDataSet();DataTabledt=ne 阅读全文
posted @ 2011-10-18 10:28 unstable 阅读(191) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Web;using System.Web.Services;using System.Web.Services.Protocols;using System.Xml.Serialization;[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]public class Service : System.Web. 阅读全文
posted @ 2011-09-09 16:33 unstable 阅读(1506) 评论(3) 推荐(0) 编辑