摘要:
XmlDocument xmldoc;XmlElement xmlelem; /// /// 创建一个带内容的xml文件 /// public void CreateXml() { xmldoc =... 阅读全文
摘要:
string xmlStr = "1张三"; XmlDocument xDoc = new XmlDocument(); xDoc.LoadXml(xmlStr); XmlNodeList xmlNodeList = xDoc.Se... 阅读全文
摘要:
//把一个json字符串转换为DataTablestring user_json="{\"userName\":\"张三\"}";string userName="";DataTable dt = JsonConvert.DeserializeObject("[" + user_json+ "]")... 阅读全文
摘要:
WebForm:(假如请求这个页面有get和post两种情况)Request.ServerVariables("Request_Method")="POST"Request.ServerVariables("Request_Method")="GET"Request.RequestType=="PO... 阅读全文