Posts

What are the Differences between ASP.NET 3.5 and ASP.NET 4.0 | What are new features in Asp.net 4.0

Check below table for Asp.net 3.5 Features SNo Feature Asp.net 3.5 1. New Features Asp.net 3.5 includes the following new features        1) Listview Control        2) DataPager Control        3) Nested Master Pages        4) Linq DataSource 2. Multi Targeting Asp.net 3.5 supports multi –targeting What is multi – targeting? Check below description 3. Ajax Support In Asp.net 3.5, Ajax is integrated in .NET framework, thereby making the process of building intuitive cool user interfaces easier 4. Silverlight Support It support for silverlight 5. JavaScript Debugging It support for JavaScript debugging 6. LINQ Support It supports LINQ Check below details for Asp.net 4.0 Features In Asp.net 4.0 many new features has included i...

What are the Differences between asp.net 1.0, asp.net 1.1 and asp.net 2.0

Asp.net 1.0 & 1.1 version In these Asp.net versions IIS should be installed by user.   Asp.net 2.0 version In this version IIS comes along with dotnet installation no need to install separately and in Asp.net 2.0 many new features has came into picture like partial classes, master pages, skins and themes, roles and membership profiles, Generics and many new controls etc. I will explain each feature clearly. Main purpose of Asp.net 2.0 is used to increase productivity, use same controls for all types of devices, faster and better web application. Check below table for Asp.net 2.0 new features. SNo Feature Asp.net 2.0 1. Master Pages In Asp.net 2.0 we have feature called Master Pages by using this feature we can apply consistent look and feel for all the pages in website without writing same code on multiple pages. 2. Themes Asp.net 2.0 introduces new feature called Themes or skins by using this feature we can customize ...

How to create process Loader in Window Application

1.        Create   ModelLodingUI   Window Form and set the property : FromBoderStyle - None 2.        Drag & Drop Picture Box and set Loading Image. 3.        Paste following code: 4.   namespace LoadingProcess 5.   { 6.        public partial class ModalLoadingUI : Form 7.        { 8.            #region Constants 9.            public bool CloseMe = false ; 10.         #endregion 11.   12.         public ModalLoadingUI() 13.         { 14.             InitializeComponent(); 15.         } 16.  ...

How To Create Google Map In WPF

Gmaap.xaml -------------- namespace Test {     /// <summary>     /// Interaction logic for Window1.xaml     /// </summary>     public partial class Googlemaps : Window     {         public Googlemaps( string from , string to)         {             InitializeComponent();             txt_From.Text = from;             txt_To.Text = to;             btn_Search_Click( null , null );         }         private void Window_Loaded( object sender, RoutedEventArgs e)       ...