目前,我會的幾種asp.net介面與後台**互動方式有幾種:
1、webform+伺服器控制項互動;
2、webform+jquery+ajax+一般處理程式互動;
3、webform+jquery+ajax+webservice/wcf互動;
4、mvc;
5、webform+jquery+ajax直接互動;
其中第1種互動是入門級,發展級為第2與第3,互動方式類似,也是我常用的開發方式。第4種最近幾年才出現,玩過,用於專案比較少。
現在記錄一下第5種互動方式。
第一步:準備頁面**;
"">
第二步:準備.cs後台**;
usingsystem;
using
system.collections.generic;
using
system.linq;
using
system.text;
using
system.web;
using system.web.services; //
引用命名空間
namespace
jhsoft.ed2k.uilogic
[webmethod]
//必須加標記及宣告static
public
static
string
getstr()
[webmethod]
public
static
string getdata(string str, string
str2)
}}
第三步:core.js**
var jhsoft = jhsoft ||{};//當前頁面
jhsoft.currenturl = document.url;
Jquery ajax呼叫webservice總結
原文 jquery ajax呼叫webservice總結 jquery ajax呼叫webservice c 要注意的幾個事項 1 web.config裡需要配置2個地方 在之間加入 2.正確地編寫webserivce的 uservalidate 的摘要說明 webservice namespace...
Jquery ajax呼叫webservice總結
jquery ajax呼叫webservice c 要注意的幾個事項 1 web.config裡需要配置2個地方 在之間加入 2.正確地編寫webserivce的 1 2 uservalidate 的摘要說明 3 4 webservice namespace 5 webservicebinding ...
Jquery ajax呼叫webservice總結
jquery ajax呼叫webservice c 要注意的幾個事項 1 web.config裡需要配置2個地方 在之間加入 2.正確地編寫webserivce的 uservalidate 的摘要說明 webservice namespace webservicebinding conformsto...