摘要:
.NET FRAMEWORK平台 .NET FRAMEWORK也可运行在其他操作系统上,例如:Mono,他是.net framework的开源版本 可运行在linux、mac、ios、android. net framework主要包含庞大的代码库和公共语言运行库(Common Language R 阅读全文
摘要:
using System; using System.Web; using System.Drawing; 返 回的是img标签 context.Response.ContentType = "text/html"; string html = "<img src=\" 图片路径 \" />"; c 阅读全文
摘要:
分页思路1 1.先查询出已经看过的数据,然后从总的数据中排除已经看过的数据,剩下的数据取前n条 例:每页5条数据,要看第三页 select top 5 * from Contacts where contactId not in (select top ((3-1)*5) contactId fro 阅读全文