Click here to Skip to main content
15,868,141 members
Everything / Protected

Protected

protected

Great Reads

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
This is how to to list the files in a specific directory and allow the user to download the files.ASPX:
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
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

Latest Articles

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
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
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
protected void ReportViewer1_PreRender(object sender, EventArgs e) {DisableFormat(ReportViewer1, "Pdf"); }protected void

All Articles

Sort by Updated

Protected 

15 Jul 2015 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.
14 Jan 2014 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
12 Oct 2013 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
11 Oct 2013 by ASP.NET Community
protected void ReportViewer1_PreRender(object sender, EventArgs e) {DisableFormat(ReportViewer1, "Pdf"); }protected void
11 Oct 2013 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
11 Oct 2013 by ASP.NET Community
Protected Sub PrintAllPages(ByVal sender As Object, ByVal e As EventArgs)GridView1.AllowPaging = FalseGridView1.DataBind()Dim sw As New
11 Oct 2013 by ASP.NET Community
 C#protected void Page_Load(object sender, EventArgs e){    // Change the title    Page.Header.Title = "My Content Page Title";        // Change
11 Oct 2013 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
11 Oct 2013 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,
11 Oct 2013 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
11 Oct 2013 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
11 Oct 2013 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
11 Oct 2013 by ASP.NET Community
Encrypt & Decrypt ConnectionString SectionSometimes we need to secure ConnectionString to prevent anyone can knows it. whatever your purpose from
11 Oct 2013 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)    {    }   
11 Oct 2013 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
11 Oct 2013 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
11 Oct 2013 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
11 Oct 2013 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:
11 Oct 2013 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
11 Oct 2013 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"
29 Jun 2013 by Ghosuwa Wogomon
An example of a clean way to implement classes in C