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 ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
Explain what is an abstract class?
What is preprocessor in .net and type, where it use?
What does asp stand for in asp.net?
What are the new features implemented in ASP.NET?
What is the application pool?
What are the different authentication modes in asp.net?
Differentiate between globalization and localization.
What is role-based security in asp.net?
What is server side session?
What is comparevalidator?
Explain the different types of assemblies?
What are the Types of chaching. How to implement caching
Asp pages that worked pefectly on windows 2000 server and iis 5.0 do not work on windows 2003 server with iis 6.0. Asp.net pages work fine. Why?
How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?