保存的方法和 *** 作步骤如下:
1、首先,在PS中完成切片后,依次单击“文件”-->“存储为Web和设备所用格式”,如下图所示。
2、其次,在d出窗口中,单击右上角的“存储”按钮,如下图所示。
3、接着,在此步骤中,选择“HTML和图像(*.HTML)”作为保存类型,然后单击“保存”按钮即可,如下图所示。
4、最后,保存后,HTML格式的文件和JPG格式的图片就保存在了“images”文件夹中,如下图所示。这样,问题就解决了。
1、打开一个IE的浏览器的功能,进入到一个网页的页面上,在左上角的位置,点击“文件”选项的功能。
2、在d出下拉菜单中,然后点击“另存为”的选项功能。
3、在保存到电脑时候,对保存类型进行修改,修改为“网页,全部(*.htm*.html)”,这样就可以把网页全部网页内容保存下来,包括图片,js等内容,
4、保存的图片会直接保存在文件夹内,也有其它的内容。
//上传文件protected void bt_Post_Click(object sender, EventArgs e)
{
string strBaseLocation = Server.MapPath("../EmployeeFile/")
string TruePath = string.Empty
string Temp1 = string.Empty
string remarkid = string.Empty
if (uploadFile.PostedFile.ContentLength != 0)
{
//获得文件全名
string fileName = System.IO.Path.GetFileName(uploadFile.PostedFile.FileName)
//获得扩展名
string rightName = System.IO.Path.GetExtension(fileName)
Random g = new Random()
string rad = g.Next(10000).ToString()
Temp1 = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString() + DateTime.Now.Millisecond.ToString() + rad
uploadFile.PostedFile.SaveAs(strBaseLocation + Temp1 + rightName)
TruePath = Temp1 + rightName //获得随即文件名
if (Request.QueryString["id"] != "0")
{
string sql_sel = "select * from tsmannouncementmanage where id='" + Request.QueryString["id"] + "'"
OleDbDataReader dr = list.GetList(sql_sel)
if (dr.Read())
{
remarkid = dr["ContactFile"].ToString()
}
if (remarkid != "")
{
string sql_update_file = "update tsmmainannouncefile set name='" + fileName + "',newname='" + TruePath + "' where keyfile='" + remarkid + "'"
list.ExeSql(sql_update_file)
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('修改成功!')</script>")
}
else
{
string sql_updateorder = "update tsmannouncementmanage set fileid='" + list.GetFormatStr(Number.Text) + "' where id='" + Request.QueryString["id"] + "'"
list.ExeSql(sql_updateorder)
string sql_insert_file = "insert into tsmmainannouncefile (Name,NewName,KeyFile) values ('" + fileName + "','" + TruePath + "','" + list.GetFormatStr(Number.Text) + "')"
list.ExeSql(sql_insert_file)
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('上传成功!')</script>")
}
}
else
{
string sql_insert_file = "insert into tsmmainannouncefile (Name,NewName,KeyFile) values ('" + fileName + "','" + TruePath + "','" + list.GetFormatStr(Number.Text) + "')"
list.ExeSql(sql_insert_file)
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('上传成功!')</script>")
}
}
else
{
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('你还没有选择要上传的附件!')</script>")
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)