摘要:
//调用示例 this.MakeSmallImg(f.PostedFile,this.Server.MapPath("1.jpg"),600,500); //------------------------------------------------------------ public void MakeSmallImg(System.Web.HttpPostedFile postFile,string saveImg,System.Double Width,System.Double Height){ //原始图片名称 string originalFilename 阅读全文
摘要:
新建表: createtable[表名] ( [自动编号字段]intIDENTITY(1,1)PRIMARYKEY, [字段1]nVarChar(50)default’默认值’null, [字段2]ntextnull, [字段3]datetime, [字段4]moneynull, [字段5]intdefault0, [字段6]Decimal(12,4)default0, [字段7]imagenull, ) 删除表: Droptable[表名] 插入数据: INSERTINTO[表名](字段1,字段2)VALUES(100,’51WINDOWS.NET’) 删除数据: DELETEFROM[表名 阅读全文