摘要: HttpPostedFile oFile = Request.Files["NewFile"]; // Check if the file has been correctly uploaded if (oFile == null || oFile.ContentLength == 0 || !(Convert.ToInt32(HttpContext.GetGlobalResourceObject("SystemInfo", "OpenFileup")) == 1)) { SendResults(202); return; } int iErrorNumber = 0; string sFil 阅读全文
posted @ 2011-01-18 10:52 caicainiao 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 显示一张很大的图片时,一般浏览器上会出现一个长长的滚动条,这让人看上去很不舒服。所以,我想让图片进行自动缩放,并不是图片裁剪。下面给出一个示例:Css代码 style .Image{ max-width:600px;height:auto;cursor:pointer; border:1pxdashed#4E6973;padding:3px; zoom:expression(function(elm){ if(elm.width560){ varoldVW=elm.width;elm.width=560; elm.height=elm.height*(560/oldVW); } elm. 阅读全文
posted @ 2011-01-18 09:12 caicainiao 阅读(587) 评论(0) 推荐(0) 编辑