Introduction The Microsoft Health Common User Interface (CUI) provides a toolkit with controls which addresses wide range of patient safety concerns for Health Care Organizations all over the world. This tool kit allows the developers to build a new generation of Health Care Applications. With Microsoft CUI you can Quickly and easily develop a Health Care Application Design guidance for...
Overview on SharePoint 2007 Features
Introduction This post explains the SharePoint 2007 features which helps the end users to understand the benefits of MOSS. Document Library One of the most used features of SharePoint is the document library. It allows the users to manage documents by uploading them to libraries and manage rows and columns of information which is similar to spreadsheet. Lists another interesting feature in...
Business Needs for SharePoint 2007
A number of organizational needs made the adoption of SharePoint technologies. Some of the common business needs to use SharePoint 2007. Document Management Includes document versioning, check-out and check-in features, adding metadata to documents and a better control of document access. Collaboration between users To allow the users to interact efficiently with each other to share...
WCF vs ASP.NET Web services
Introduction In this post I will explain the Difference between ASP.NET web service and programming WCF services like ASP.NET web services. It also discusses how we use the both technologies for developing the web services. The development of web service with ASP.NET relies on defining data and relies on the XmlSerializer to transform data to or from a service. Key issues with XmlSerializer to...
Microsoft Web Application Installer(Beta)
Introduction The Microsoft Web Application Installer (Web AI) allows you to install Web applications for IIS from other sources. Web AI identifies available applications and the originating Web sites, and asks you to select the application that you want to install. What does it do? Web AI downloads the applications that you selected directly from the originating web sites and configures according...
Host the WCF Service in IIS
Introduction This post explains hosting the WcfEmployee Service on IIS that we previously hosted with in .NET Executable. Hosting the WCF service in IIS provides a robust, efficient and secure features to WCF service. 1. Create a virtual directory that pointing to the Employee Service project in IIS 2. Configuring the service in IIS is identical to the configuration used for hosting the service...
Hosting the WCF Service in .NET Executable
Introduction This post explains how to host a WCF service that we defined in the previous article WCF sample in VS 2008. Specifically we host the WCF service in .NET console application. 1. Add the Console application project called, Host, to the solution 2. Add System.ServiceModel .NET, System.Configuration Assemblies to the Host Project. 3. Add the WCF Service project...
Microsoft Next Operating System Windows 7
Microsoft announced that the successor to Windows Vista will be called Windows 7. Microsoft has set 2010 as release target for Windows 7. Mike Nash, corporate vice president of Windows Product Management, explained: "Over the years, we have taken different approaches to naming Windows. We’ve used version numbers like Windows 3.11, or dates like Windows 98, or...
Calculating the size of the File in C#
Introduction This code snippet explains how to calculate the size of the file and display in a label control. For example I am taking PDF file to find the size. It Displays the size of the file in Bytes, Kilobytes and Megabytes. //Calculate size of the PDF file if (PdfFilePath.EndsWith("pdf")) {...
CRUD operations using the List View Web Server Control
Introduction Using the ASP.NET ListView Control we can insert,edit, or delete records without writing any code. This post explains how to display and update data using the ListView control. We will use SqlDataSource control to retrieve results from the data source and act as the data source for the ListView control. 1. Create a web site in visual studio 2008 by selecting the File menu, click new...