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 response object is related to asp's response object?
Explain different types of Caching techniques in ASP.NET?
What is base class of .net?
What is the caspol.exe tool used for?
What are validator? Name the validation controls in asp.net? How do you disable them?
How does session authentication work?
1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?
1.can we add connection string in global.asax?????????? 2.what are the default files included when we create new web application????
What is a url string?
What is the viewstate in asp.net?
Can we have 2 web config files?
Why mvc is better than asp.net? : Asp.Net MVC
What is a web based system?
What does asax stand for?
Explain how cookies work. Give an example of cookie abuse.