Introduction Routing is a pattern matching mechanism that accepts the incoming request and decides what to do with that request. At runtime, Routing engine makes use the Route table for matching the incoming request’s URL pattern with the URL patterns defined in the Global.asax. As...
Continue reading »
April 16, 2017 admin
Asp.Net, Asp.net MVC, C#.Net
No Comment
Introduction In this post, I will explain about the various event that is raised during the life cycle of a web application. Global.asax in Asp.net is used to specify an event handler for some application level event. Application_Init: This event Fires each time application initializes...
Continue reading »
April 16, 2017 admin
Asp.Net
No Comment
This post shows how to make changes in an ASP.NET Web site to include ASP.NET routing features. At the end of this post, you will get an idea about how routing can be achieved in asp.net web application. This post describes, how you can do...
Continue reading »
April 13, 2017 admin
Asp.Net
No Comment
All About Web.configue File The configuration file is employed to manage varied settings that outline a website. The settings are kept in XML files that are separate from your application code so it can be changed without affecting the code. Typically a website contains one...
Continue reading »
April 11, 2017 admin
Asp.Net
No Comment
A Delegates can be considered as a reference type variable which can hold the reference to a method. This reference can then be changed at runtime. It is mostly used for implementation of events and the call-back methods. These are implicitly derived from the inbuilt...
Continue reading »
April 6, 2017 admin
Asp.Net, C#.Net
No Comment
Math class can be use for maths related calculation. some of the useful methods of this class to perform maths related calculation are as below. – Math.BigMul(): use for getting the multiplication of two number. – Math.Ceiling(): use for getting a number that is greater...
Continue reading »
April 6, 2017 admin
C#.Net
No Comment
Updatepanel is used to perform partial postback of the page. UpdatePanel eliminates the need of a refresh of the whole page in each postback request. This control is located inside Ajax Extensions tabs inside a toolbox. The can have two childtags. 1. ContentTemplate: The content...
Continue reading »
April 5, 2017 admin
Ajax, Asp.Net, C#.Net
No Comment
ViewBag – ViewBag is used to send a small amount of data to the view. – There may be some situation where you want to transfer some temporary data to view which is not included in the model object. – The viewBag is a dynamic...
Continue reading »
January 13, 2017 admin
Asp.net MVC
No Comment
– OOPS = Object Oriented Programming. – OOPS is a programming technique which provides an efficient way to manage Object and its behaviour across a system. – OOPS provides a way to show/hide relevant data. – OOPS provides an efficient way for code reusability. Here...
Continue reading »
January 11, 2017 admin
C#.Net
No Comment
You can use below tips and trick in visual studio to enhance the speed of coding and development. (1) Matching brace/comment/region/quote “Ctrl+]” can be used to the match brace, region, quote. It can also be used to the match comment, region or quote depending on...
Continue reading »
December 26, 2016 admin
Visual Studio
1 Comment