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 are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?
What are sql joins?
What is a gridview in asp.net?
What is a web pool?
Are there resources online with tips on asp to asp.net conversions?
What are the modes of updation in an updatepanel?
Which library is used by the testers and developers to develop automated tests and create testing tools?
Which method is used to force all the validation controls to run?
What is the function of new view engine in asp.net? : asp.net mvc
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
What is the size of Get method and how much data it can store?
What is the usage of DelegatingHandler?
List the events in page life cycle.
What are the options in ASP.NET to maintain state?
Explain culture and uiculture values.