上一页 1 ··· 319 320 321 322 323 324 325 326 327 ··· 341 下一页
摘要: /*-------------------------------------------------------- 设有一个单链表,头结点为head,为递增有序, 写一个完整程序,将其改为递减有序。 ----------------------------------------------------------*/ #include #include //定义结点 struct nod... 阅读全文
posted @ 2008-10-15 21:59 emanlee 阅读(556) 评论(0) 推荐(0)
摘要: 问题: asp:Menu 在Safari浏览器中显示不正常。 解决方法一:(App_Browsers) Step1: Add App_Browser Folder in application right click on project add ASP.Net Folder - App_Browsers right click on App_Brows... 阅读全文
posted @ 2008-10-14 12:48 emanlee 阅读(754) 评论(1) 推荐(0)
摘要: 创建表:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGOCREATET... 阅读全文
posted @ 2008-10-07 12:26 emanlee 阅读(12116) 评论(1) 推荐(3)
摘要: REF: http://forums.aspfree.com/net-development-11/displaying-multiple-columns-in-a-html-listbos-control-in-asp-19062.html listbox column spacing solution FINALLY!!! I Know so many people have had... 阅读全文
posted @ 2008-10-03 22:02 emanlee 阅读(716) 评论(0) 推荐(0)
摘要: REF: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1400080&SiteID=1 (1) Rather than inserting spaces, can you adjust the padding property on the textbox? If you goal is to have the field inden... 阅读全文
posted @ 2008-10-02 12:47 emanlee 阅读(219) 评论(0) 推荐(0)
摘要: The problem I had this problem in Visual Studio 2005 and now I have it in Visual Web Developer 2008 express edition where when debugging a web application using the development web server the dynamic... 阅读全文
posted @ 2008-09-26 13:23 emanlee 阅读(381) 评论(0) 推荐(0)
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/*--------------------------------------------------------- Title: Link Queue(链队列) 链队列-链式存储结构的队列 请... 阅读全文
posted @ 2008-09-23 17:54 emanlee 阅读(342) 评论(0) 推荐(0)
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> /*--------------------------------------------------------- Title: Sequence Queue(顺序队列)顺序队列-顺... 阅读全文
posted @ 2008-09-23 17:50 emanlee 阅读(453) 评论(0) 推荐(0)
摘要: 使用临时表:select id=identity(int,1,1),value into #temp from YourTable select * from #temp drop table #temp 取得第11到20行记录:select IDENTITY(int,... 阅读全文
posted @ 2008-09-22 22:27 emanlee 阅读(5076) 评论(0) 推荐(0)
摘要: --获得禁用所有外键约束的语句select 'ALTER TABLE [' + b.name + '] NOCHECK CONSTRAINT ' + a.name +';' as 禁用约束 from sysobjects a ,sysobjects b where a.xtype ='f' and ... 阅读全文
posted @ 2008-09-22 21:48 emanlee 阅读(5180) 评论(0) 推荐(0)
上一页 1 ··· 319 320 321 322 323 324 325 326 327 ··· 341 下一页