Monday, July 30, 2007

New version of CSS Friendly control adapters for asp.net

As a developer we all love css (Cascading style sheet). Microsoft has significantly updated his css friendly control adapters kit.The key is to use something that may be new to you: control adapters. These are little chunks of logic that you add to your web site to effectively "adapt" an ASP.NET control to render the HTML you prefer. The ASP.NET 2.0 CSS Friendly Control Adapters kit provides pre-built...
Share:
Friday, July 27, 2007

Maximum for objects in sql server

Here are some maximum number of different objects in sql server.maximum number of character in table name-128maximum number of character in column name-128maximum number of table columns per select statement -4096maximum number of table columns per table-1024maximum number of foreign key reference per table-253maximum number of column per index-16maximum number parameters in stored procedure -1024maximum...
Share:

Diffrence between Oracle 9i and sql server 2000

Oracle and sql server both are great database management system and have great features. Often developer need to know what type of DBMS he should use for a particular needs.I have found a great comparison articles for oracle 9i and sql server 2000. Which describe all the feature of both DBMS and compare based on features.here is the link for that article..http://www.dotnetspider.com/kb/Article328...
Share:

Ten Must-Have Tools Every .NET Developer Should Download Now

James Avery created a list of tools that every developer should download.This list contains .....Snippet CompilerRegulatorCodeSmithBuilding a Custom TemplateNUnitWriting an NUnit TestFxCopLutz Roeder's .NET ReflectorNDocNAntNAnt in ActionSwitch Toolshere is the link of article that descries the every tools in great details...http://msdn.microsoft.com/msdnmag/issues/04/07/MustHaveToo...
Share:

Ten Essential Tools - Visual Studio Add-Ins Every Developer Should Download Now

James Avery creates a list of ten add ins a visual studio developer must download.This contains following add ins.TestDriven.NETGhostDocSmart PasterCodeKeepPInvoke.NETVSWindowManager PowerToyWSContractFirstVSMouseBindingsCopySourceAsHTMLCache VisualizerWrapping It Uphere is the article link for that...http://msdn.microsoft.com/msdnmag/issues/05/12/VisualStudioAddi...
Share:

Book:Developing More-Secure Microsoft® ASP.NET 2.0 Applications

Microsoft Press has this great book.this book includes...• Harden a Web server, operating system, communication protocol, and ASP.NET Validate input data with white listing, regular expressions, sand boxing, and other techniques•Understand design and security implications of various cryptography approaches•Integrate with Microsoft Windows security features such as impersonation, delegation and protocol...
Share:

Migrating to asp.net 2.0 videos

Microsoft asp.net team and and http://www.learn2asp.net/ has launched a new web cast series about migrating from other languages to asp.net 2.0.It's contains following web casts;Migrating to asp.net 2.0 (2 web casts)Migrating from asp to asp.net 2.0Migrating from jsp to asp.net 2.0Migrating from coldfustion to asp.net 2.0( 2 web casts)Using PHP on Windows Plateform.here is link for thathttp://www...
Share:

New Version of ASP.NET Site.

Microsoft asp.net team has redesigned the asp.net site. Few days back they have beta version of it. Today they have launched full version. It is a great redesign and contents are very much well organized with less images so it's load faster then old version.do visit new asp.net site.http://www.asp.n...
Share:

Understanding .NET Framework Architecture.

Lots of developers developing the application using Microsoft.net framework. But most the of developer don't know the underlying architecture.I have found a great article about .net framework which describes every aspect of .net framework architecture including objective of .net framework, Overview of .net framework,Roll of .net framework,.NET Assembly, .Net CLR(Common Language Run time),JIT Compiler,Future...
Share:

Enumeration in C#.NET,VB.NET

Enumeration is a great user defined data type in C#.Net and VB.NET. It is very useful in code readability. It greatly increases the readability of code. here is the example of the enumeration that contains the weekdays. In C#.NET... public enum weekdays{Sunday=1,Monday=2,Tuesday=3,Wednesday=4,Thursday=5,Friday=6,Saturday=7} In VB.NET... public enum weekdaysSunday=1,Monday=2,Tuesday=3,Wednesday=4,Thursday=5,Friday=6,Saturday=7,end...
Share:

SQL Server Joins

Sql server joins are used to combine result data from two or more tables. Often we need to display data from two tables. Where sql server joins are very useful.There are three types of sql server joins.1) Inner Join2) Outer Join3) Cross Join1. Inner Join:Inner join will display data based on common columns of two tables. It will findthe data from both tables based on join condition.This join take...
Share:
Thursday, July 26, 2007

Diffrenece Between Function and Procedure in SQL Server

Following are the main differences between sql server stored procedure and sql server user defined function.Stored procedure does not return values but it returns a integer value indicates that stored procedure executed successfully. While user defined function in sql server must return a single value. You can not return more than one value in user defined function.You can call user defined function...
Share:
Tuesday, July 24, 2007

Cool link for OOP in C#.NET

Here are the some cool links for various oops techniques :http://www.samspublishing.com/articles/article.asp?p=101373http://www.developerfusion.co.uk/show/3821/2/http://www.codersource.net/csharp_tutorial_oops.htmlhttp://www.codersource.net/codersource_dot_net.htmlhttp://www.c-sharpcorner.com/Code/2005/June/OOPSand.NET2.asphttp://www.c-sharpcorner.com/UploadFile/eecabral/OOPSand.NET11110200506580...
Share:

Advantages of inheritance in C#.NET,VB.NET

Following are some advantages of inheritance.1. No need to write code from scratch. You can start coding with existing classes.2. Through inheritance you can very easily convert small system into large systems3. You can lots of classes with the same root but have different implementations of classes.4. Code reusablity through inheritance increased.5. Good at representing the objects6. Inheritance...
Share:

Sealed class and abstract class in C#.NET and VB.NET

Sealed Class:A sealed class is a class the does not allow inheritance . Means you can not inherit the sealed class . In VB.NET sealed class is represented as Non Inheritable class.Abstract class:Abstraction is process of identifying common patterns that have semantic variations . An abstraction represents the common patterns and provide means of variations you can use.Abstract class methods does not...
Share:

Access Modifier in .net class

Following are the access modifier in class of .net framework.1. PublicAllow access to class member from any other class.2. PrivateAllow access to class member from same class only.3. ProtectedAllow access to class member from same class and inherited classes.4. InternalAllow access to the class member in same Assembly.5. Protected InternalAllow access to class member in same class,inherited classes...
Share:
Monday, July 23, 2007

SSW Rules to write better software and website.

Do you believe in standards ? Lots of people like me believe in maintaining standards, How to write software, how to write code and how to write stored procedure.I have found a great link that contains almost all the links for every standards beginning from project management to email and phone communication. They have achieved great success by following this great standards.here is the link for that...
Share:

Silverlight resouces articles and links.

Microsoft Silverlight is one of the hottest technology that ever produce on web. It is a Microsoft answers to macro media flash and action script. You can develope rich web user interace and dashing site with the use of Microsoft silver light and asp.net.I have found a great link that contains lots of silverlight resources and tutorial links.You can find almost all information and links about silver...
Share:

Build SQL Server Stored Procedure with C#.NET

Traditionally from many year we have build sql server stored procedure with the transact sql. Microsoft framework 2.0 and sql server 2005 allows us to write stored procedure with other languages like C#.NET,VB.NET etc.Microsoft sql server 2005 provide integrated support with .net common language run time so we can create stored procedure in C#.NET,VB.NET also. It has several advantages over using...
Share:

New version of ASP.NET site release.

Microsoft asp.net team has launched the new version of the asp.net site. It is more faster and more user friendly build with recent technologies.Microsoft invite community to visit site and send it feedback.here is the link for that site.http://publicbeta.asp.n...
Share:
Friday, July 13, 2007

http://www.aspnettutorials.com- Great Resource for ASP.NET Developers

I have found a great sites that hosts great asp.net tutorials. It is http://www.aspnettutorials.com/.It contains tutorial in following categories.Advanced Technologies AJAXInternet BrowsersControlsDatabaseEmailError HandlingFileGraphicsNetworkPerformanceUser Interface/ThemesValidationVisual Web DeveloperXMLSuggest Tutorial Please do visit this site. You will find lost of tutorial there...
Share:

SilverLight Video Links

Here are the some cool links of silver light videos: http://www.microsoft.com/silverlight/video.aspx To Learn silver light You can download learning videos: http://silverlight.net/learn/learnvideos.aspx Another one is what we can do the with silver light : http://blogs.msdn.com/tims/archive/2007/06/19/demo-the-power-of-silverlight-video.aspx http://blogs.msdn.com/tims/archive/2007/06/20/mor...
Share:

ASP.NET 2.0 Folders

ASP.NET 2.0 allows us to create some folders via right clicking project. But lots of people are don't know why we need to create that folder.Here are the description for the each folder in asp.net 2.0 that we have to create for diffrent purpose.App_Code:App_code folder contains the code files for the classes, structures,enums etc. It also contains .wsdl files for web services. Typed data set files...
Share:

Acropolis Videos

Here is are some links for cool acropolis video on http://www.windowsclients.net/ Introducing Acropolis Using Acropolis PartPanes Using the Acropolis Designer Using Transitions in Acropolis here is the all link of videos: http://windowsclient.net/acropoli...
Share:

New Version of Microsoft Acropolis it out

The Microsoft code name “Acropolis” Community Technology Preview is a set of components and tools that make it easier for developers to build and manage modular, business focused, client .NET applications. Acropolis is part of the “.NET Client Futures” wave of releases, our preview of upcoming technologies for Windows client development. Microsoft Announces new version ctp of Microsoft acropolis....
Share:
Thursday, July 12, 2007

Sql Server 2000,2005 DataType and Ranges

As developer in Microsoft technology we all need to know about data types supported by the sql server 2000 and sql serve 2005. We also have to know what is there ranges and where it should use.I have found a cool link that describes all the things above.here is the link for that article...http://www.teratrax.com/sql_guide/data_types/sql_server_data_types.h...
Share:

Transfering data with sql server integration services...

If we want to transfer data from one database table to another database we need to write complex code and queries. But with sql server 2005 integration services you can do it sometimes. You have to use sql server business intelligence studio(bundled with sql server 2005 developer edition).I have found a great article that descries all the thing that how you can create a package with sql server 2005...
Share:

What is SQL Server Integration Services

The ability to transform corporate data into meaningful and actionable information is the single most important source of competitive advantage in today’s business world. Harnessing the data explosion to better understand the past and get direction for the future has turned out to be one of the most challenging ventures for enterprise Information Technology departments in global organizations. There...
Share:

Unraveling the Mysteries of .NET 2.0 Configuration

I have found a great link that desbries .net 2.0 configuration api in details. It is very easy handly and cool article.here is the link for aritcle..http://www.codeproject.com/dotnet/mysteriesofconfiguration....
Share:

Introducing Windows Presentation Foundation

The primary goal of Windows Presentation Foundation (WPF) is to help developers create attractive and effective user interfaces. Learn how the WPF unified platform helps make designers active participants in creating user interfaces, and provides a common programming model for standalone and browser applications I have found a cool link from msdn that will describe all the things for Windows presentation...
Share:

Access proxy / firewall restricted internet sites using tunelling or onion routing

I have found a great link from http://www.codeproject.com/. that describes the how to Access proxy / firewall restricted Internet sites using tunnelling or onion routing.The article was written by Anup Shinde and he has explained all the details including what is the problem .. The solution form problem... Implementation.here is the link for that article...http://www.codeproject.com/internet/Onio...
Share:

Most Popular Blog on the Earth with blogger and typead

One of my friend Amit Agrawal(Microsoft Blogstar winner) provide a collection of most popular blogs on earth from blogger and typepad. here is the link from his blog.http://labnol.blogspot.com/2007/05/most-popular-blogs-on-blogger-and.h...
Share:

Telerik Rad Controls 2007 Release Editor Bug

Telerik Rad Controls latest release Telerik Rad Controls Q1 2007 have bug in their editor controls. Whenever you try to load editor in your web browser they are giving the error:the RadControl Folder not found.I have searched a lot and found that one file content need to replace by the simple code.goto the webapplication root of your webapplication then gotoRadControls\Editor\Dialogs\blank.htmlreplace...
Share:

Microsoft Enterprise library 3.1 released.

Enterprise Library 3.1 – May 2007 is a new release of the Microsoft patterns & practices Enterprise Library. The Enterprise Library is a collection of application blocks. These are reusable software components designed to assist developers with common enterprise development challenges. This release of the Enterprise Library includes two new application blocks, a software factory for creating application...
Share:

C#.NET Business Logic Layer Class example

//here is the example of business logica layer classpublic class UserBll{#region Private Memebersprivate DashBoardData.UserData _objUserData;private DashBoardCollection.UserCollection _objUserCol;#endregion#region Methodspublic UserBll(){}public UserBll(DashBoardCollection.UserCollection obj){_objUserCol = obj;}#endregion#region Methodspublic void Add(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Add);}public...
Share:

C#.NET 2.0 class example for data acess layer using microsoft enterpise library

here is the data layer class example.....///here is the enumpublic enum OprationType{Add = 1,Update = 2,Delete = 3}//here is the Interfaepublic interface IDataStatndard{void Operation(OperationType enumOperationType);}//here is the user data classpublic class UserData : IDataStatndard{#region PrivateMemeberprivate DashBoardCollection.UserCollection _objUserCol;private Database _db;private string _commandName;private...
Share:
Monday, July 9, 2007

C#.NET 2.0 Generics Class collection

C#.NET 2.0 provide great features with generics collection. Now you don't have to write code for the coding for adding,removing objects. It all contains by the generics colleciton. here the sample user level classusing System;using System.Collections.Generic; public class UserLevelCollection:System.Collections.Generic.List<userlevelcollection>{#region Private Membersprivate int _intUserLevelID;private...
Share:
Friday, July 6, 2007

Except operator SQL Server 2005 -Find Duplicate values in multiple tables.

I have found a great way to find duplicate values with two tables in sql server. Suppose we have two tables t1 and t2 both have same fields like id,name.And both table have following data.T1 Data:ID NAME1 abc2 xyz3 pqrT2 Data:ID NAME2 xyzWe need to find rows from table t1 which is not there in table t2.Here is the simple way to do it.select * from t1exceptselect * from t2Except operator return result...
Share:

How Much Is Your Blog Worth?

I have found a great link that will calculate your blogs worth? How much cost you should take when you sell your blog to other peoples.Inspired by Tristan Louis's research into the value of each link to Web logs Inc,Dan Carlon's have created this little applet using Technorati's API which computes and displays your blog's worth using the same link to dollar ratio as the AOL-Webblogs Inc deal.It is...
Share:

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews