What is AJAX ?
AJAX = Asynchronous JavaScript and XML.
AJAX is a technique for creating fast and dynamic web pages.
AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.
Examples of applications using AJAX: Google Maps, Gmail, Youtube, and Facebook tabs.
Click here for AJAX Tutorial
In this post , we are going to create a share point page with AJAX Supporting web parts which invokes JSONP services to get data from Server.
1. Create JSONP WCF Services(How to create?)
Format of the Result
Link :
http://ServerName:PorNumber/Service.svc/jsp/GetEmployeMoreDetailsByUserName?method=JsonPCallBack&logInName=User1
Result :
JsonPCallBack(
{
"DateOfBirth":"\/Date(969042600000+0530)\/",
"AboutMe":"This is all About Me",
"CurrentATC":"CMB ATC",
"Department":"OIG--CMB-VPL-Shared Services-Center Management",
"Experience":16.2,
"Interests":["UX Design","SharePoint","Photography"],
"Languages":[""],
"NoofPastProjects":33,
"PermanentATC":"CMB ATC",
"ReportingManager":"Domain\\UserName",
"Tier":0,
"Since":"\/Date(852057000000+0530)\/"
}
);
2. Create Empty/Visual Web part project and create web parts.
3. In aspx page create client side controls (Button , Label , text box ...etc)
<div>
Search Employee : <input id="SearchEmpName" type="text" name="SearchEmpName" value=""/>
<input id="btnWCFREST" type = "button" value = "Search" /><br/>
<b>Reporting Manager:</b> <label id = "EmpReportlbl" ></label><br/>
<b>Department:</b> <label id = "EmpDepartlbl" ></label><br/>
<b>Tier:</b> <label id = "EmpTierlbl" ></label><br/>
<b>Permanent Office:</b> <label id = "EmpPermAtclbl" ></label><br/>
<b>Current Office:</b> <label id = "EmpCurrAtclbl" ></label><br/>
<b>Interests:</b> <label id = "EmpIntelbl" ></label><br/>
<b>Date Of Birth:</b> <label id = "EmpDOBlbl" ></label><br/>
<b>Languages:</b> <label id = "Emplanglbl" ></label><br/>
<b>Experience:</b> <label id = "EmpExpelbl" ></label><br/>
</div>
4. Add reference to the project in order to use JQuery in Web parts
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js"></script>
5. Use the JQuery to invoke the WCF Services in AJAX.
Check this for more about JQuery : JQuery, Write Less, do more
<script type="text/javascript">
jQuery.support.cors = true;
$(document).ready(function () {
$("#btnWCFREST").click(function () {
$.ajax({
url: 'http://ServerName:PortNumber/Service.svc/jsp/GetEmployeMoreDetailsByUserName?logInName=' + $("#SearchEmpName").val() + '&method=?',
type: 'GET',
dataType: 'jsonp',
error: function (x, t, r) { alert("Error In Employee More Details"); },
success: function (data) {
document.getElementById('EmpReportlbl').innerText = data.ReportingManager;
document.getElementById('EmpDepartlbl').innerText = data.Department;
document.getElementById('EmpTierlbl').innerText = data.Tier;
document.getElementById('EmpPermAtclbl').innerText = data.PermanentATC;
document.getElementById('EmpCurrAtclbl').innerText = data.CurrentATC;
document.getElementById('EmpIntelbl').innerText = data.Interests;
document.getElementById('EmpDOBlbl').innerText = Date(data.DateOfBirth);
document.getElementById('Emplanglbl').innerText = data.Languages;
document.getElementById('EmpExpelbl').innerText = data.Experience;
}
});
});
});
</script>
6. check whether AJAX is working or not by putting breakpoints in VS project in Page load method and attach appropriate process.
AJAX = Asynchronous JavaScript and XML.
AJAX is a technique for creating fast and dynamic web pages.
AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.
Examples of applications using AJAX: Google Maps, Gmail, Youtube, and Facebook tabs.
Click here for AJAX Tutorial
In this post , we are going to create a share point page with AJAX Supporting web parts which invokes JSONP services to get data from Server.
1. Create JSONP WCF Services(How to create?)
Format of the Result
Link :
http://ServerName:PorNumber/Service.svc/jsp/GetEmployeMoreDetailsByUserName?method=JsonPCallBack&logInName=User1
Result :
JsonPCallBack(
{
"DateOfBirth":"\/Date(969042600000+0530)\/",
"AboutMe":"This is all About Me",
"CurrentATC":"CMB ATC",
"Department":"OIG--CMB-VPL-Shared Services-Center Management",
"Experience":16.2,
"Interests":["UX Design","SharePoint","Photography"],
"Languages":[""],
"NoofPastProjects":33,
"PermanentATC":"CMB ATC",
"ReportingManager":"Domain\\UserName",
"Tier":0,
"Since":"\/Date(852057000000+0530)\/"
}
);
2. Create Empty/Visual Web part project and create web parts.
3. In aspx page create client side controls (Button , Label , text box ...etc)
<div>
Search Employee : <input id="SearchEmpName" type="text" name="SearchEmpName" value=""/>
<input id="btnWCFREST" type = "button" value = "Search" /><br/>
<b>Reporting Manager:</b> <label id = "EmpReportlbl" ></label><br/>
<b>Department:</b> <label id = "EmpDepartlbl" ></label><br/>
<b>Tier:</b> <label id = "EmpTierlbl" ></label><br/>
<b>Permanent Office:</b> <label id = "EmpPermAtclbl" ></label><br/>
<b>Current Office:</b> <label id = "EmpCurrAtclbl" ></label><br/>
<b>Interests:</b> <label id = "EmpIntelbl" ></label><br/>
<b>Date Of Birth:</b> <label id = "EmpDOBlbl" ></label><br/>
<b>Languages:</b> <label id = "Emplanglbl" ></label><br/>
<b>Experience:</b> <label id = "EmpExpelbl" ></label><br/>
</div>
4. Add reference to the project in order to use JQuery in Web parts
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js"></script>
5. Use the JQuery to invoke the WCF Services in AJAX.
Check this for more about JQuery : JQuery, Write Less, do more
<script type="text/javascript">
jQuery.support.cors = true;
$(document).ready(function () {
$("#btnWCFREST").click(function () {
$.ajax({
url: 'http://ServerName:PortNumber/Service.svc/jsp/GetEmployeMoreDetailsByUserName?logInName=' + $("#SearchEmpName").val() + '&method=?',
type: 'GET',
dataType: 'jsonp',
error: function (x, t, r) { alert("Error In Employee More Details"); },
success: function (data) {
document.getElementById('EmpReportlbl').innerText = data.ReportingManager;
document.getElementById('EmpDepartlbl').innerText = data.Department;
document.getElementById('EmpTierlbl').innerText = data.Tier;
document.getElementById('EmpPermAtclbl').innerText = data.PermanentATC;
document.getElementById('EmpCurrAtclbl').innerText = data.CurrentATC;
document.getElementById('EmpIntelbl').innerText = data.Interests;
document.getElementById('EmpDOBlbl').innerText = Date(data.DateOfBirth);
document.getElementById('Emplanglbl').innerText = data.Languages;
document.getElementById('EmpExpelbl').innerText = data.Experience;
}
});
});
});
</script>
6. check whether AJAX is working or not by putting breakpoints in VS project in Page load method and attach appropriate process.
8 comments:
Heу I knoω this is оff toρiс but I waѕ ωonԁering
if yοu knew of аnу widgets Ι could аԁԁ
to my blog thаt automаtіcally tweet mу nеwest twitter
updatеs. I've been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.
Here is my webpage; Linked web site
Hi,
i haven't use any kinds of widgets in my blog. i will check and let you know. anyway thanks
ninest123 16.03
ray ban sunglasses, cheap oakley sunglasses, replica watches, michael kors outlet, oakley sunglasses, jordan shoes, prada handbags, nike outlet, nike air max, nike free, louis vuitton, tiffany and co, ugg boots, louboutin outlet, ray ban sunglasses, louis vuitton outlet, burberry outlet online, michael kors outlet, chanel handbags, uggs on sale, tiffany jewelry, louis vuitton outlet, michael kors outlet, oakley sunglasses, oakley sunglasses, louboutin shoes, prada outlet, ugg boots, ray ban sunglasses, ugg boots, burberry, replica watches, michael kors outlet, tory burch outlet, longchamp outlet, michael kors outlet, louis vuitton, michael kors, polo ralph lauren outlet, longchamp outlet, louis vuitton, polo ralph lauren outlet, louboutin, oakley sunglasses, gucci outlet, ugg boots, christian louboutin outlet, nike air max, longchamp
north face, hogan, coach outlet, air force, hollister pas cher, michael kors, coach outlet, lululemon, burberry, sac guess, nike roshe, nike free, true religion jeans, air jordan pas cher, lacoste pas cher, ralph lauren pas cher, michael kors, kate spade outlet, ralph lauren uk, michael kors, new balance pas cher, true religion jeans, ray ban uk, nike roshe run, converse pas cher, michael kors, hermes, mulberry, vans pas cher, louboutin pas cher, true religion outlet, ray ban pas cher, nike air max, oakley pas cher, air max, timberland, nike free run uk, kate spade handbags, nike air max, hollister, tn pas cher, replica handbags, nike air max, vanessa bruno, abercrombie and fitch, sac longchamp, true religion jeans, nike blazer, coach purses, longchamp pas cher, north face
ugg,uggs,uggs canada, canada goose, ugg,ugg australia,ugg italia, canada goose, hollister, wedding dresses, moncler, louis vuitton, canada goose outlet, swarovski, pandora charms, pandora jewelry, moncler outlet, moncler, sac louis vuitton pas cher, replica watches, louis vuitton, marc jacobs, louis vuitton, vans, moncler, swarovski crystal, pandora jewelry, toms shoes, moncler, juicy couture outlet, doudoune canada goose, karen millen, converse, lancel, canada goose outlet, coach outlet, gucci, ray ban, thomas sabo, moncler, supra shoes, canada goose uk, juicy couture outlet, links of london, barbour jackets, louis vuitton, canada goose, barbour, ugg boots uk, pandora charms, bottes ugg, converse outlet, moncler, montre pas cher, canada goose, ugg pas cher, moncler
ninest123 16.03
zzzzz2018.8.27
pandora jewelry
jordan shoes
ralph lauren uk
giuseppe zanotti
canada goose jackets
coach outlet
kate spade outlet online
tods outlet
converse trainers
canada goose jackets
hermes handbags
golden goose
salvatore ferragamo belt
vapormax
kobe shoes
moncler
curry 7
vans outlet
jordan store
supreme clothing
سما
شركة تنظيف مسابح فى العين
شركة تلميع وجلى رخام فى العين
شركات تنظيف الفلل فى العين
Post a Comment