怎么把发布好的Asp.Net网站放到服务器上

怎么把发布好的Asp.Net网站放到服务器上,第1张

空间也就是虚拟主机,就是找空间服务购买的空间,一般你购买这个的时候,会有一个相应的空间的管理后台。这个空间就是用来放你的网站文件的。发布好的网站文件可以用ftp工具上传到购买的空间上。

域名也就是你找域名服务商购买的形如(www.baidu.com)这样的。

空间的管理后台有一个域名绑定。绑定好了之后,再到域名的管理面板去解析到你的空间ip,等全国刷新就好了。

这样子你的域名和空间的绑定就算完成了。

{ } protected void Button1_Click(object sender, EventArgs e){if (this.filepost.PostedFile.FileName == ""){Response.Write("上传文件不能为空!")return}try{string Path = Server.MapPath("upload/")//设置服务器端路径string filePath = this.filepost.PostedFile.FileName//获取客户端实际路径string fileName = filePath.Substring(filePath.LastIndexOf("\\")+1)//获取文件名称string serverPath = Path + fileName//上传的文件保存到服务器端的路径System.Text.StringBuilder buider = new System.Text.StringBuilder()//上传的文件信息:可变字符串buider.Append("上传文件的类型:"+this.filepost.PostedFile.ContentType.ToString()+"")buider.Append("客户端文件地址:"+this.filepost.PostedFile.FileName+"")buider.Append("上传文件名称:"+fileName)buider.Append("上传文件的扩展名:"+filePath.Substring(fileName.LastIndexOf(".")+1))buider.Append("上传文件的大小:"+this.filepost.PostedFile.ContentLength/1024+"k"+"")if (System.IO.File.Exists(serverPath)){Response.Write("这个文件在服务器上已经存在,请不要重复上传!")return}string str = fileName.Substring(fileName.LastIndexOf(".")+1)//获取文件后缀名if (str == "jpg" || str == "rar" || str == "ppt"){Response.Write("对不起,该类型文件不能被上传!")return}if (this.filepost.PostedFile.ContentLength >2048){Response.Write("对不起,文件不能超过2K")return}this.filepost.PostedFile.SaveAs(serverPath)//上传保存文件


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/586823.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-07-07
下一篇2023-07-07

发表评论

登录后才能评论

评论列表(0条)

    保存