CODEDIGEST InstallShield
Home Articles CodeDigest Tutorials InstallShield FAQs
Skip Navigation LinksHome   Submit Articles and Win Geeky Prizes!!   You are not logged in.
Search
 

Sponsors
InstallShield
 

Product Spotlight
 

Technologies
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

In Community
No News Feeds available at this time.
 
CodeDigest Home
Recent Articles
In this short article, we will see how to fetch the control that raised the postback from the codebehind.
GridView control is one of the most widely used databound control in ASP.Net. It will be good and user friendly if make the GridView control’s row itself selectable instead of having separate buttons in every row for Select, edit and delete actions. Read more..
LINQ to SQL is new component that is released with .NetFramework 3.5. LINQ to SQL provides a way where a developer can manage a relational database object as a .net object. In simple terms, it is an ORM (Object-relational mapping) that is used to manage a back end object as a front end object in object oriented way i.e. relational to object oriented type system.
Postback is a mechanism where the page contents are posted to the server due to an occurence of an event in a page control. For example, a server button click or a Selected Index changed event when AutoPostBack value is set to true. Read more..
There is no inbuilt rich text editor control readily available in existing ASP.Net control set. Since, developing a rich text editor ourselves is time consuming and complicated task, we can try using some of the readily available rich text editor in the internet. TinyMCE editor is one such editor that can be integrated and used in ASP.Net projects for providing rich text editing options.
CodeDigest
 
Other Activities
FAQs and Interview Questions
Technology News
 
Recent ASP.Net Articles
In this article we will continue our discussion by filling out the implementation in our service class with some NBuilder code. Once we have the working service class in place we can then create a working UI (in the ASP.NET MVC project we created in the last article).
Most often, we build applications that work on the data stored in the database. Understanding this need, Microsoft shipped a new feature with ASP.NET 3.5 called Dynamic Data Website that enables us to build data driven websites very easily.
The following article demonstrates how to build a ratings widget for your website using ASP.NET MVC and jQuery.
Yesterday I needed a solution for an annoying problem. I have some buttons on a ASP.NET web form and I need to know which button raised the PostBack not in the event itself but in the page load event. This post will show a way to solve this conundrum.
Dynamic Data 4 - Adding watermark to the DateTime and Text fields using the Ajax Control Toolkit's TextBoxWatermark Extender.
In this article, I'll cover the OOP principles in the MS AJAX JavaScript library. It is quite a big topic, but I decided to highlight only the essential things that should be known by developers for creating server side controls extended by client capabilities.
In this article we'll create a simple ASP.NET user control and apply CSS styles.
This is a slightly improved version of my previous password field template, which was just about functional. So I have improved it slightly now you will have to enter the password twice in password mode and they will have to match.
In this article we are going to use the T4 templates to create strongly typed view names. This technique allows us to catch view name errors at compile time rather than at runtime.
DropDownLists in ASP.NET MVC seem to cause a fair amount of confusion to developers fresh from Web Forms World. This article looks to provide you with all (well, most) of what you need to know to get your DropDownLists working in ASP.NET MVC.