天使半只翼

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

随笔分类 -  .net

摘要:下面,我们将用C#建立一个名为“SecurityWebService”的Web Service。一个Web Service文件将含有形式为.asmx的扩展名。(就像Asp.net的文件扩展名为.aspx)<%@ WebService Language="C#" class="SecurityWebService" %> <%@ WebService Language="C#" class="SecurityWebService" %> 这条语句将告诉编译器程序将运行在Web Service模 阅读全文
posted @ 2012-06-05 16:41 天使半只翼 阅读(440) 评论(0) 推荐(0)

摘要:在webServices项目的Web.config的<system.web>里加上:<webServices> <protocols> <add name="HttpPost" /> <add name="HttpGet" /> </protocols></webServices>[WebMethod(Description="This method call will get the company name and the price for a given 阅读全文
posted @ 2012-06-05 16:37 天使半只翼 阅读(418) 评论(0) 推荐(0)

摘要:Teams.xml<?xml version="1.0" encoding="UTF-8"?><Teams> <Member team="U-Shop" Description="U-Shop团队"> <name>灵动生活</name> <position>planning</position> </Member> <Member team="U-Shop" Description=" 阅读全文
posted @ 2012-05-31 18:19 天使半只翼 阅读(374) 评论(0) 推荐(0)

摘要:aa.xml<?xml version="1.0" encoding="UTF-8"?><abc xmlns="urn:abc-2.0"> <!-- properties --> <property name="web_http">www.xx.com</property> <property name="web_cnname">xxxx</property> <property name="we 阅读全文
posted @ 2012-05-31 15:25 天使半只翼 阅读(358) 评论(0) 推荐(0)

摘要:using System.IO;if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + "inic.xml")) 阅读全文
posted @ 2012-05-31 12:27 天使半只翼 阅读(185) 评论(0) 推荐(0)

摘要:VB<%@ Import Namespace="System.Data" %><%@ Import Namespace="System.Xml" %><%@ Page Language="C#" Debug="true" %>C#using System;using System.Xml; 阅读全文
posted @ 2012-05-31 11:34 天使半只翼 阅读(154) 评论(0) 推荐(0)

摘要:在用 <System.Diagnostics.DebuggerStepThrough()> 属性标记的方法中忽略逐语句的调试。如果你在方法的前面加上 <System.Diagnostics.DebuggerStepThrough()> 的话,就不能用逐语句调试。如果你在这个方法的内部有个断点,执行到断点后,你按F11,它就会跳出这个方法. 阅读全文
posted @ 2012-05-31 10:37 天使半只翼 阅读(1136) 评论(1) 推荐(1)

摘要:using System;using System.Collections; //使用Hashtable时,必须引入这个命名空间class hashtable{ public static void Main() { Hashtable ht=new Hashtable(); //创建一个Hashtable实例 //key值唯一,value值可以重复. ht.Add("E","e");//添加key/键值对 ht.Add("A","a"); ht.Add("C","c"); 阅读全文
posted @ 2012-05-30 18:46 天使半只翼 阅读(255) 评论(0) 推荐(0)