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
What is difference between session and application in asp net?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What is session id in web application?
How do you declare static variable?
Why do we need a web application session?
Is it right that ASP.NET Web API has replaced WCF?
What is Razor View Engine
What is the difference between session and application?
What is an assembly? Explain its parts.
When cookie will expire?
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
What are sessions and cookies?
What are the memory-mapped files?
What is the difference between custom controls and user controls?
Define web services in asp.net.