Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / protected

Protected

protected

Great Reads

by ASP.NET Community
What is Access Modifier?Objects in .NET are created from a class, struct, etc.  Thesedefinitions, as well as the properties, methods, or events
by ASP.NET Community
Howto: Add JavaScript inside Head element from code behind  Here is the sample how you can do that.1)  Add some JavaScript inside page header
by Ghosuwa Wogomon
An example of a clean way to implement classes in C
by ASP.NET Community
This is new Concept Introduce in Asp.net 2.0, This is used to Passing the values from one page to Certain page using PostbakUrl property for Button,

Latest Articles

by ASP.NET Community
What is Access Modifier?Objects in .NET are created from a class, struct, etc.  Thesedefinitions, as well as the properties, methods, or events
by ASP.NET Community
Howto: Add JavaScript inside Head element from code behind  Here is the sample how you can do that.1)  Add some JavaScript inside page header
by Ghosuwa Wogomon
An example of a clean way to implement classes in C
by ASP.NET Community
This is new Concept Introduce in Asp.net 2.0, This is used to Passing the values from one page to Certain page using PostbakUrl property for Button,

All Articles

Sort by Score

protected 

by ASP.NET Community
What is Access Modifier?Objects in .NET are created from a class, struct, etc.  Thesedefinitions, as well as the properties, methods, or events
by ASP.NET Community
Howto: Add JavaScript inside Head element from code behind  Here is the sample how you can do that.1)  Add some JavaScript inside page header
by Ghosuwa Wogomon
An example of a clean way to implement classes in C
by ASP.NET Community
This is new Concept Introduce in Asp.net 2.0, This is used to Passing the values from one page to Certain page using PostbakUrl property for Button,
by ASP.NET Community
This article will show you how to create a color selector control that will looks like the image in the right side.   The first thing to mention
by ASP.NET Community
Sometimes you need custom paging and sorting of a Gridview. So I wanted to share the ASP.NET code for all.Write this code on Client Side (Aspx
by ASP.NET Community
This is how to to list the files in a specific directory and allow the user to download the files.ASPX: <asp:GridView ID="GridView1"
by Akhil Mittal
Access modifiers (or access specifiers) are keywords in object-oriented languages that set the accessibility of classes, methods, and other members. Access modifiers are a specific part of programming language syntax used to facilitate the encapsulation of components.
by ASP.NET Community
Encrypt & Decrypt ConnectionString SectionSometimes we need to secure ConnectionString to prevent anyone can knows it. whatever your purpose from
by ASP.NET Community
The flyweight pattern is used whenever you have large amount of small objects that share common information. The use of the pattern reduces the
by ASP.NET Community
A typical request from a customer or user of your website is to enable the upload and download of documents. The could be spreadsheets, presentations
by ASP.NET Community
using System.Net.Mail;public partial class SUPER_mail : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {    }
by ASP.NET Community
HiThis a common task for Auction bid, events, promotions, project deadline etc.For this sample we need to create a sql table and one stored
by ASP.NET Community
Global.asax, is the global file in the web application, which offers application level events to be registered. There are many of the events in this
by ASP.NET Community
Different forums are filled with the questions regarding how to manually implement cookies for login or in other words how to implement "Remeber me"
by ASP.NET Community
Many of you might have come across the situation where you need to making server side discussion based on client side JavaScript confirm message
by ASP.NET Community
Protected Sub PrintAllPages(ByVal sender As Object, ByVal e As EventArgs)GridView1.AllowPaging = FalseGridView1.DataBind()Dim sw As New
by ASP.NET Community
C#protected void Page_Load(object sender, EventArgs e){    // Change the title    Page.Header.Title = "My Content Page Title";        // Change
by ASP.NET Community
protected void ReportViewer1_PreRender(object sender, EventArgs e) {DisableFormat(ReportViewer1, "Pdf"); }protected void
by ASP.NET Community
Assuming you already have your domain model and repositories implemented and unity wired (if you are missing this part, let me know and i'll add the
by ASP.NET Community
How to check if a specific control caused postback?Let's say you have a button ( btnAdd ) among other controls...To check if it has just caused