摘要:
void CutImage(HttpPostedFile post,string ppuid,out string imagename)
{
System.Drawing.Image SourceImg = System.Drawing.Image.FromStream(post.InputStream);
if (SourceImg.Height ConfigHelper.UserFaceMaxHeight)
{
this._lbl_upload_msg.Text = "最大高度不得大于 " + ConfigHelper.UserFaceMaxHeight;
return;
}
if (SourceImg.Width ConfigHelper.UserFaceMaxWidth)
{
this._lbl_u 阅读全文
摘要:
收集得最全的sql 语句 阅读全文