|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。上传|上传图片|缩略图privatevoidButton1_Click(objectsender,System.EventArgse)
{
if(File1.PostedFile.FileName!=null)
{
stringnamestr=Path.GetFileName(File1.PostedFile.FileName);//提取文件名
File1.PostedFile.SaveAs(Server.MapPath(".")+@""+namestr);
Image2.Visible=true;
Image2.ImageUrl=Server.MapPath(".")+@""+namestr;
System.Drawing.Imageimage,aNewImage;
image=System.Drawing.Image.FromStream(File1.PostedFile.InputStream);
decimalwidth=image.Width;
decimalheight=image.Height;
intnewwidth,newheight;
if(width>height)
{
newwidth=150;
newheight=(int)(height/width*150);
}
else
{
newheight=150;
newwidth=(int)(width/height*150);
}
aNewImage=image.GetThumbnailImage(newwidth,newheight,null,IntPtr.Zero);
Bitmapoutput=newBitmap(aNewImage);
Graphicsg=Graphics.FromImage(output);
g.DrawString(TextBox1.Text.Trim(),newFont("CourierNew",9),newSolidBrush(Color.Red),60,60);//写版权信息及文本格局及地位
output.Save(Server.MapPath(".")+@"s_"+namestr,System.Drawing.Imaging.ImageFormat.Jpeg);
Image1.Visible=true;
Image1.ImageUrl=Server.MapPath(".")+@"s_"+namestr;
}
}
</p>asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。 |
|