Call web method using jquery asp.net ajax:
function SearchInterventionQuestions() {
$("#divSearchInterventionQuestions").html('');
//debugger;
//var welcomePageURL = document.getElementById("hdnCreateSurveyQuestionsURL");
var createInterventionQuestionsURL = "../Modules/WebForms/InterventionExercise/CreateHappinessExercise.aspx";
var searchText = $("#txtSearchInterventionQuestion")[0].value;
$.ajax({
type: "POST",
url: createInterventionQuestionsURL + "/SearchInterventionQuestion",
data: '{question: "' + searchText + '" }',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSearchInterventionQuestionsSuccess,
failure: function (response) {
alert(response);
}
});
return false;
}
function OnSearchInterventionQuestionsSuccess(response) {
$("#divSearchInterventionQuestions").html(response.d);
return false;
Removing Shared Folders - IT Security Guidelines - IT Security - Trinity College Dublin
Remove Shared FoldersPerform the following steps to remove shared folders which you no longer use.Windows 2000/XP :Right click My Computer -> Select 'Manage'.Choose 'Shared Folders'.On the list expand shared folders and select the 'Shares' folder.To disable any share you are not using right click on the shared folder and choose 'Stop Sharing' as in the image below. Remember - Ignore the shares with '$' after them these are default administration shares and are required.Thanks to tcd
Merge GridView Cells Or Columns in Row ASP.NET C#
Merge GridView Cells Or Columns in Row ASP.NET C#
In most of the cases specially
How to display loading GIF Image In JQuery AJAX in ASP.NET
Introduction
Today’s JQuery is most powerful library for web development GUI