建站与开发

  • C#使用JavaScriptSerializer类实现序列化与反序列化得到JSON

    JavaScriptSerializer类由异步通信层内部使用,用于序列化和反序列化在浏览器和Web服务器之间传递的数据。1、添加引用项目添加:System.Web.Extensions.dll的引用;代码添加:using System.Web.Script.Serialization的引用;2、属性和方法介绍2.1 属性MaxJsonLength: 获…

    2019-11-15 275

  • c#实现UrlDecode效果,URL编码转中文

    在c#中使URL编码转中文,常用的一种说法是使用HttpUtility.UrlDecode进行处理,而且这是主流说法。但是,HttpUtility.UrlDecode使用前提是引用System.Web,并且using System.Web而对于某些工程来说,的确不好去引用,因此需要找一个别的方法来实现。经过查找,可以使用Ur…

    2019-11-13 276

  • C# 对字符进行UrlEncode/UrlDecode

    string text= System.Web.HttpUtility.UrlEncode("heart", System.Text.Encoding.UTF8);    //UrlEncode编码string data = System.Web.HttpUtility.UrlDecode(text, System.Text.Encoding.UTF8);     //UrlDecode解码================利用URL中传长中…

    2019-11-13 313

  • Access to the temp directory is denied

    j今天突然好几个网站不能访问,报如下错误,其中default为用用程序池。Access to the temp directory is denied. Identity IIS APPPOOL\default under which XmlSerializer is running does not have sufficient permission to access the temp directory. CodeDom wil…

    2019-11-02 285

  • 微信小程序云开发和普通开发有什么区别

    开发者可以使用云开发开发微信小程序、小游戏,无需搭建服务器,即可使用云端能力。(云端说白了也就是服务端啦,说的那么高大上,对新手朋友可不太友好。)小程序云开发提供了三个基础能力:数据库、存储和云函数。数据库:json数据库,就理解为往里面存的是json,取出来的…

    2019-10-22 350