ASP.Net

Web application calling WCF services
Below is a simple and straight forward tutorial on how you can get your web application to call a WCF service hosting on IIS6. I've broken the tutorial down into steps so as to faciliate a hands-on walkthrough. Step 1Create your WCF serviceFirst of all, create your WCF service by specifying the interface as well as the implementor //define the interfacepublic interface IWCFService{ [OperationContract] string myString(string input);} //implementation of interfacepublic class WCFService : IWCFService{...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, March 06, 2007 10:18 AM | Feedback (25)

Interface made simple
Interface can be quite confusing for some people, especially if they have not been exposed to applications that requires its implementation. Microsoft's definition of an Interface is An interface contains only the signatures of methods, delegates or events. Now if you take out all the technical jargons and got asked to explain the concept of an Interface to your boss, who has absolutely no technical background, you probably will say that an Interface can basically be explained as a contract. Imagine...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, February 01, 2007 2:24 PM | Feedback (0)

Changing the ASP.NET User-Login Database
Back in the ASP.NET 1.0 and 1.1 days, if you application requires you to have a user login functionality, you will very likely need to create the login user interface and the database that comes along with it. Things have changed quite a bit after the release of ASP.NET 2.0. While it is true that you can still do it the old fashion way with a lot more flexibility, you might want to consider using the ASP.NET provided user controls. ASP.NET 2.0 user controls is very useful when it comes to implementing...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, January 26, 2007 1:10 PM | Feedback (7)