Posts

Showing posts from January, 2011

ASP.NET Tips

http://weblogs.asp.net/scottgu/pages/ASP.NET-2.0-Tips_2C00_-Tricks_2C00_-Recipes-and-Gotchas.aspx

SQL Server Certifications

SQL Server Certifications Currently, there are certifications for three editions of SQL Server. I recommend everybody to settle on the SQL Server 2008 certifications. Microsoft certifications for SQL Server 2008 have already been released and we will be discussing them in detail. We will also explore the upgrade path from SQL Server 2005 to SQL Server 2008. MCTS: Technology Specialist Paths - One exam to earn each of the MCTS certifications 70-432: Microsoft SQL Server 2008, Implementation and Maintenance 70-433: Microsoft SQL Server 2008, Database Development 70-448: Microsoft SQL Server 2008, Business Intelligence Development and Maintenance MCITP: IT Professional Paths – Two exams to earn an MCITP certification 70-450: PRO: Designing, Optimizing, and Maintaining a Database Server Infrastructure using Microsoft SQL Server 2008 Pre-requisite: 70-432: Microsoft SQL Server 2008, Implementation and Maintenance 70-451: PRO: Designing Database Solutions and Data Access Using Microsoft SQL

WCF Links

How to Host WCF Services Tutorial

Benefits of WCF over Web services

about benefits of WCF over Web services. Here they are 1.WCF supports more of WS-* standards than web services 2.As I mentioned in the article WCF supports multiple bindings HTTP,TCP,MSMQ,WS-HTTP etc where as web service supports only HTTP. 3.WCF can maintain transactions like COM+ 4.It has JSON integration 5.It can be hosted on IIS,WAS, Self hosting and windows services 6.Web services have no instance management ie you can not have a singleton web service or session full webservice

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 serialize .NET types to XML ■Only Public fields or Properties of .NET types can be translated into XML. ■Only the classes which implement IEnumerable interface. ■Classes that implement the IDictionary interface, such as Hash table can not be serialized. The WCF uses the DataContractAttribute and DataMemeberAttribute to translate .NET FW types in to XML. [DataContract] public class Item { [DataMember] public string ItemID; [DataMember] public decimal ItemQuantity; [DataMember] public decimal ItemPrice; } The DataContractAttribute can be applied to the class or a strcture.

Using jQuery Validation in ASP.NET Master Pages

Using jQuery Validation in ASP.NET Master Pages http://www.dotnetcurry.com/ShowArticle.aspx?ID=310&AspxAutoDetectCookieSupport=1 Delete row from GridView and Database using JQuery in asp.net http://www.dotnetspark.com/kb/1535-delete-row-from-gridview-and-database-using.aspx GridView and JQuery In ASP.Net Tutorial http://www.dotnetspark.com/kb/1532-gridview-and-jquery-asp-net-tutorial.aspx Using jQuery to Insert a New Database Record http://stephenwalther.com/blog/archive/2010/03/26/using-jquery-to-insert-a-new-database-record.aspx Why ASP.NET AJAX UpdatePanels are dangerous http://encosia.com/2007/06/19/the-easiest-way-to-break-aspnet-ajax-pages/

c# 3.0 New Features

Introduction: Microsoft has introduced the C# 3.0 with many key features. It reduces the work of the developers to write many lines of code to achieve the target. It will decrease the code size as well as the additional overhead of the servers. There are many features like Auto implemented property. Anonymous types, Partial methods, object initializes, implicitly typed local variables. New Features 1. Auto Implemented Property The property plays significant role to set and get the values. In the previous versions we were doing like need to set the values to the temporarily local variable. Now that work exactly reduced in the C# 3.0 version. Because it will be implicitly handled by the .Net compiler. Let's see the new version, Auto implemented property. [Access-modifier] data type [Name of the property] { get; set; } For example we are going to create one property for send email. public string FromID {get; set ;} public string ToID {get; set ;} public string Subject {get; set ;} pub

CSS Box Model

Image
CSS Box Model The box model represents how elements are interpreted and displayed in an HTML document. Each element is seen as a box which contains certain properties that describes how it is viewed within that document. Common properties for elements include margin, border, and padding. The margin of a box represents the outside area of a box or the area between its border and other elements. The border is simply the boxes border. Its optional and can have different styles such as grooved, dotted, or just plain solid. Between the border and the actual content the box contains is the padding. It is like a margin for the content and the border. When sizing boxes with styles, width and height represent the content's width and height. It does not include the dimensions of the margin, border, or padding. The top, right, bottom, and left properties of a box, however, measure from the extents of a boxes margin, not its contents. Note: IE5 incorrectly includes margin, border, and padding