摘要:
做项目遇到 记录下 以免忘记json跨域请求报错,错误信息No 'Access-Control-Allow-Origin' header is present on the requested resource处理手段:使用jsonp格式, ajax请求参数dataType:'JSONP'。代码格式... 阅读全文
摘要:
我最近新学python看到有人用python实现了下载糗百图片的代码。手痒于是也写了一个。1fromsgmllibimportSGMLParser2importurllib234classsgm(SGMLParser):5defreset(self):6SGMLParser.reset(self)7self.srcs=[]8self.ISTRUE=True910defstart_div(self,artts):11fork,vinartts:12ifv=="author":13self.ISTRUE=False14defend_div(self):15self.ISTRUE 阅读全文
摘要:
public void delfile(string path) { if (Directory.Exists(path)) { foreach (string d in Directory.GetFileSystemEntries(path)) { if (File.Exists(d)) File.Delete(d); else ... 阅读全文
摘要:
下载功能Response.ContentType = "application/x-zip-compressed";Response.AddHeader("Content-Disposition", "attachment;filename=**.doc");string filename = Server.MapPath("~/manage/upload/**.doc");Response.TransmitFile(filename);上传功能的实现if (this.File1.PostedFile != nul 阅读全文
摘要:
国际惯例 先上代码:前台代码<asp:GridView ID="grshow" runat="server" AutoGenerateColumns="False" onrowdeleting="grshow_RowDeleting" EmptyDataText="数据为空"> <Columns> <asp:BoundField DataField="name" HeaderText="文件夹名称" /> <asp 阅读全文
摘要:
有时候由于需求的需要我们的手动来添加数据源,先看前台代码<asp:GridView ID="grshow" runat="server" AutoGenerateColumns="False" onrowdeleting="grshow_RowDeleting" EmptyDataText="数据为空"> <Columns> <asp:BoundField DataField="name" HeaderText="文件夹名称" 阅读全文