一 : 求最简单的办法制银镜反应或铜镜反应!要好控制.
求最简单的办法制银镜反应或铜镜反应!要好控制.
如果在煤油中反应我也接受
木炭肯定不行;
二 : 求帮助在线等:jquery uploadify onComplete 没响应
JS:
<script type="text/javascript"> $(function () { $('#uploadify').uploadify({ 'uploader': 'js/uploadify/uploadify.swf', 'script': 'UploadAvatarHandler.ashx', 'cancelImg': 'js/uploadify/cancel.png', 'buttonImg':'images/up.jpg', 'folder': 'Temp', 'queueID': 'fileQueue', 'auto': true, 'multi': true, 'method': 'get', 'fileExt': '*.jpg;*.gif;*.jpeg;*.png', 'fileDesc': '请选择jpg/gif/jpeg/png文件...', 'scriptData': null, 'sizeLimit': 1024000, 'speed': 10000, 'onComplete': function (event, queueID, fileObj, response, data) { if (response.indexOf('Temp') != -1) { var result = response.split('$'); //得返回参数 alert(result); var maxVal = 0; if (result[1] > result[2]) { maxVal = result[2]; } else { maxVal = result[1]; } $("#maxVal").val(maxVal); //设置截图区大小 $("#hidImageUrl").val(result[0]); //上传路径存入隐藏域 ShowImg(result[0]); //在截图区显示 $("#uploadify").uploadifySettings('scriptData', { 'LastImgUrl': $('#hidImageUrl').val() }); //更新参数 } else { alert(response); } } }); }); function MakeImg(imagePath) { var str = "<li class=\"left\"><span style=\"color:#009;cursor:pointer;\" onclick=\"$($(this).parent()).remove();$('#upfile-count').html(parseInt($('#upfile-count').html())+1);$('#upfile-p').show();\">删除</span><p><img width=\"100\" height=\"100\" src=\"/Temp/" + imagePath + "\"></p><input name=\"url[]\" type=\"hidden\" value=\"" + imagePath + "\"><input size=\"10\" name=\"alt[]\" value=\"图片描述\"></li>"; $("#img-list").append(str); size = $("#img-list :li").size(); if (size==5){ $("#uploadify").remove(); } var count =5-size; $("#upfile-count").val(count); } </script>
<%@ WebHandler Language="C#" Class="UploadAvatarHandler" %>using System;using System.Web;using System.Web.SessionState;public class UploadAvatarHandler : IHttpHandler, IRequiresSessionState{ public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Charset = "utf-8"; System.IO.Stream stream = null; System.Drawing.Image originalImg = null; //原图 System.Drawing.Image thumbImg = null; //缩放图 try { int minWidth = 100; //最小宽度 int minHeight = 100; //最小高度 int maxWidth = 300; //最大宽度 int maxHeight = 300; //最大高度 string resultTip = string.Empty; //返回信息 HttpPostedFile file = context.Request.Files["Filedata"]; //上传文件 string uploadPath = HttpContext.Current.Server.MapPath(@context.Request["folder"]); //得到上传路径 string lastImgUrl = @context.Request.Params["LastImgUrl"]; if (!string.IsNullOrEmpty(lastImgUrl)) { PubClass.FileDel(HttpContext.Current.Server.MapPath(lastImgUrl)); } if (file != null) { if (!System.IO.Directory.Exists(uploadPath)) { System.IO.Directory.CreateDirectory(uploadPath); } string ext = System.IO.Path.GetExtension(file.FileName).ToLower(); //上传文件的后缀(小写) if (ext == ".jpeg" || ext == ".png" || ext == ".gif" || ext == ".jpg") { string flag = "s_" + file.FileName; string uploadFilePath = uploadPath + "\\thumbImg\\" + flag; //缩放图文件路径 stream = file.InputStream; originalImg = System.Drawing.Image.FromStream(stream); if (originalImg.Width > minWidth && originalImg.Height > minHeight) { thumbImg = PubClass.GetThumbNailImage(originalImg, maxWidth, maxHeight); //按宽、高缩放 if (thumbImg.Width > minWidth && thumbImg.Height > minWidth) { thumbImg.Save(uploadFilePath); } else { resultTip = "图片比例不符合要求"; } } else { resultTip = "图片尺寸必须大于" + minWidth + "*" + minHeight; } } } else { resultTip = "上传文件为空"; } context.Response.Write(resultTip); } catch (Exception) { throw; } finally { if (originalImg != null) { originalImg.Dispose(); } if (stream != null) { stream.Close(); stream.Dispose(); } if (thumbImg != null) { thumbImg.Dispose(); } GC.Collect(); } } public bool IsReusable { get { return false; } }}
三 : 启动IIS时提示“服务没有及时响应启动
启动IIS时提示“服务没有及时响应启动或控制请求”其中一种解决方法 2009-10-25 20:14
IIS
默认网站启动不了,iis提示:找不到指定的程序,错误127
出现IIS默认网站启动不了 "服务没有及时响应启动或控制请求"的提示框,就到网上寻找一个解决方法吧.
1、启动 "RPC" "World Wide Web
Publishing"服务,Internet信息服务默认网站就自动启动了。
但是在启动这些服务中会出现一些问题。
问题:无法启动"World Wide Web Publishing Services"错误127,找不到指定程序.
解决:启动 "IIS Adnin" 服务,World Wide Web Publishing服务便能启动了。 还不行的话,就到控制面板-添加/删除程序,点击最上边的“显示更新”,找到“windows xp 软件更新”,卸载掉几个补丁,World Wide Web Publishing服务便能启动了。
KB939373-x86-CHS.exe
KB2290570
KB2124261
KB942830
KB942831
KB970483
kb2347290
kb975558
kb2121546
kb982802
kb981322
四 : 服务没有及时响应启动或控制请求
61阅读| 精彩专题| 最新文章| 热门文章| 苏ICP备13036349号-1