how to retrieve data using web services in asp.net pls give
me the code and explain me briefly
Answer Posted / kumar
(1)create a method in webservice as
[WebMethod]
public string AccBalanceAgingSummary(string FilterBy)
{
DataAccess.Report.DailyReport daDailyReport = new
DataAccess.Report.DailyReport();
return daDailyReport.AccBalanceAgingSummary
(FilterBy);
}
(2)
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How do session tokens work?
Define xmlreader class.
Where session id is stored?
Why we use asp.net for website development?
Explain the use of duration attribute of @outputcache page directive.
Why do we use sessions?
What does clearing cache?
Define globalization and localization.
What is server side routing?
What is the flow of processing of the request? : asp.net mvc
What is the equivalent of date() and time() in asp.net?
Is asp.net is a programming language?
What are the various types of cookies in asp.net?
What is the difference between debug and release?
Why is an object pool required?