我正在裁剪图像并保存。在 btnsave_click 上,我将隐藏字段值转换为十进制。本地机器上没有错误,但是当发布到服务器时,它给出了以下错误。
服务器上的详细异常:
输入字符串的格式不正确。
说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。
异常详细信息:System.FormatException:输入字符串的格式不正确。
源错误:
在执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪来识别有关异常起源和位置的信息。
堆栈跟踪:
[FormatException: 输入字符串格式不正确。]
System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +10726387 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt ) +172
System.Convert.ToDecimal(String value) +68
IngredientMatcher.Pages.ImageCropPopup.btnsave_Click(Object sender, EventArgs e) +104
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9552602
System.Web .UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +103
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) + 1724
代码: :
protected void btnsave_Click(object sender, EventArgs e)
{
string ImageName = ViewState["ImageName"].ToString();
int www = Convert.ToInt32(Math.Round(Convert.ToDecimal(W.Value)));
int hhh = Convert.ToInt32(Math.Round(Convert.ToDecimal(H.Value)));
int xxx = Convert.ToInt32(Math.Round(Convert.ToDecimal(X.Value)));
int yyy = Convert.ToInt32(Math.Round(Convert.ToDecimal(Y.Value)));
int w = (www == 0) ? 0 : www;
int h = (hhh == 0) ? 0 : hhh;
int x = (xxx == 0) ? 0 : xxx;
int y = (yyy == 0) ? 0 : yyy;
byte[] CropImage = Crop(Server.MapPath(" ") + "\\" + upPath + ImageName, w, h, x, y);
using (MemoryStream ms = new MemoryStream(CropImage, 0, CropImage.Length))
{
ms.Write(CropImage, 0, CropImage.Length);
using (SD.Image CroppedImage = SD.Image.FromStream(ms, true))
{
string SaveTo = Server.MapPath("") + "\\" + CropPath + "crop" + ImageName;
CroppedImage.Save(SaveTo, CroppedImage.RawFormat);
imgCropped.BorderWidth = 1;
imgCropped.ImageUrl = CropPath + "crop" + ImageName;
}
}
string CroppedImg = "crop" + ViewState["ImageName"].ToString();
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "OpenPopUp", "javascript:SaveAndClose('" + CroppedImg + "');", true);
}
提前致谢。