C#
moshengrenhere
好好努力
展开
-
asp.net关于session
对session,仍然觉得理不清楚,先记下来目前知道 <!--// // 摘要: // 禁用会话状态。 Off = 0, // // 摘要: // 会话状态是 ASP.NET 工作进程的进程中。 InProc = 1, // ...原创 2018-09-13 19:07:24 · 113 阅读 · 0 评论 -
C# 拆箱与装箱
public void BoxUnbox() { int i = 123; int a = 2; int j = a; int mm = a + j; object o = mm; } .method public ...原创 2018-09-13 21:46:20 · 145 阅读 · 0 评论 -
后台通过http post 调用 webservice 的方法
定义http post 调用webservice的某个方法 /// <summary> /// http Post调用 WebService /// </summary> public static XmlDocument Test1_QueryPostWebService(String URL, S...转载 2018-09-22 18:29:21 · 4634 阅读 · 0 评论 -
后台http get 方式调用webservice
定义http get 方式调用webservice的某个方法 /// <summary> /// http get 方式调用webservice 的方法 /// </summary> public static XmlDocument Test2_QueryGetWebService(String URL, String M...转载 2018-09-22 18:34:45 · 2533 阅读 · 0 评论 -
后台通过soap 1.1 post 调用 webservice
定义 soap 1.1 post 调用webservice public static XmlDocument Test3_QuerySoapWebService(String URL, String MethodName, Hashtable Pars) { #region 获取命名空间 HttpWebRequest ...转载 2018-09-22 18:42:53 · 1722 阅读 · 0 评论