asp.netдµÄweb serviceÀý×Ó
µÚÒ»£¬ н¨ÍøÕ¾£¬Ñ¡ÔñÀàÐÍΪasp.net web ·þÎñ¡£
ϵͳ×Ô¶¯ÎªÄ㽨Á¢Á˸öÎļþservice.asmx.Õâ¾ÍÊÇÒ»¸ö×î¼òµ¥µÄweb service·þÎñ¡£Äã¿ÉÒÔÖ±½ÓÔËÐв鿴Ч¹û¡£
µÚ¶þ£¬ÎÒÃÇÐèÒªµÄÊÇÐÞ¸Äservice.csÖеĴúÂ룬À´Âú×ãÎÒÃǵÄÒªÇó¡£
Ð޸ĺóµÄService.csÖеĴúÂëΪ£º
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebService(Namespace = "http://127.0.0.1/")] //µ÷ÓôËweb serviceµÄµØÖ·
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Service : System.Web.Services.WebService
{
public Service () {
//Èç¹ûʹÓÃÉè¼ÆµÄ×é¼þ£¬ÇëÈ¡Ïû×¢ÊÍÒÔÏÂÐÐ
//InitializeComponent();
}
//[WebMethod]
//public string HelloWorld() {
// return "Hello World";
//}
/// <summary>
/// ÅжÏÒ»¸öÊýÊDz»ÊÇÖÊÊý by flysky 2008-04-25
/// </summary>
/// <param name="number">ÒªÅжϵÄÊý</param>
/// <returns>·µ»Ø½á¹û</returns>
[WebMethod(Description = "ÅжÏÒ»¸öÊýÊDz»ÊÇÖÊÊý")] //ÉùÃ÷´Ëº¯ÊýΪweb service·½·¨£¬¿ÉÒÔ¹©Íâ ½çµ÷ÓÃ
public string IsPrimeNumber(int number)
{
// ÒÔÏÂΪËã·¨£¬Ã²ËƲ»ÊÇ×îÓŵÄ
string value = "";
if (number <= 0)
{
value = number.ToString() + "is not prime number";
return value;
}
else
&
Ïà¹ØÎĵµ£º
ASP.NET¶þ¼¶ÓòÃûÕ¾µã¹²ÏíSession״̬
2010-01-15 10:44
ÎÒµÄÇ°ÃæÒ»ÆªÎÄÕÂÌáµ½ÁËÈçºÎÔÚʹÓÃÁËASP.NET form authenticationµÄ¶þ¼¶Õ¾µãÖ®¼ä¹²ÏíµÇ½״̬£¬
http://www.cnblogs.com/jzywh/archive/2007/09/23/902905.html£¬
½ñÌ죬 ÎÒҪдµÄÊÇÈçºÎÔÚ¶þ¼¶ÓòÃûÕ¾µãÖ®¼ä,Ö÷Õ¾µãºÍ¶þ¼¶ÓòÃûÕ¾µãÖ®¼ä¹²ÏíSession¡£
Ê×ÏÈ, Sess ......
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Xml;
private XmlDo ......
1>>δÄܼÓÔØÎļþ»ò³ÌÐò¼¯“System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35”»òËüµÄijһ¸öÒÀÀµÏϵͳÕÒ²»µ½Ö¸¶¨µÄÎļþ¡£
½â¾ö£ºµ½C:\Program Files\Microsoft ASP.NET\ASP.NET MVC 1.0\Assemblies ÏÂÕÒµ½ System.Web.Mvc.dll Îļþ ¸´ÖƵ½ÏîÄ¿µÄbinÄ¿Â¼Ï ......
1 using System;
2 using System.Collections.Generic;
3 using System.Collections.Specialized;
4 using System.Linq;
5 using System.Web;
6 using System.Text;
7 u ......