Watch Pre-recorded Live Shows Here
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
C# Corner Home
Technologies
Monthly Leaders
ASK A QUESTION
Forum guidelines
Prasad Bhagat
1.6k
516
204.8k
how to refresh a web method per a set a time interval ?
Jun 1 2016 5:20 AM
Dear All ,
am implemeting a asp.net project that am using asp.net,ajax jqueary
i have a webmethod like bellow
[webmethod]
[WebMethod]
public static ColdStorage.Entity.DeviceDataDetails GetDeviceData(string abc,string cba)
{
/.... some code here to get data from data base ../
}
and now my jqueary finction like bellow
$(document).ready(function () {
fnGetDeviceData();
}
unction fnGetDeviceData() {
var ddlDevice =$("#ddlDevice").val();//"NHMSES0001";//
var datepicker = $("#ddlYear").val() + "-" + $("#ddlMonth").val() + "-" + $("#ddlDate").val();// $("#datepicker").val();
$.ajax({
type: "POST",
url: "Reports.aspx/GetDevicesReport",
data: "{'DeviceId' : " + JSON.stringify(ddlDevice) + ",'Date' : " + JSON.stringify(datepicker) + "}",
contentType: "application/json; charset=utf-8",
datatype: "jsondata",
success: function (ResultSet) {
if ((ResultSet.d != null) && (ResultSet.d != "undefined")) {
if (ResultSet.d.ResultStatus.StatusInd == -1) {
var getDevice = ResultSet.d.lstReportsDetails;
PopulateProducts(getDevice);
}
else {
//LoadDropDown();
alert(ResultSet.d.ResultStatus.StatusMsg);
}
}
},
});
}
the above program was called in the page load with 2 value and bind the data from databse ,
now i want to after binding the data from data base ,and after 30 seconds i want to refresh the page and get the data from database.
now here the time interval i would like to mainatain in web.conifg file .
please tell me how can i achive this am using asp.net,c#,ajax jqauery
Reply
Answers (
3
)
how to create paging with stored procedure for eCommerce
ajax data load isssue