New
Mon, Feb 4, 2008 8:00 AM
by shanselman
|
ASP.NET for Designers
There's lots of technologies like skinning and theming, and of course, Web Standards like XHTML and CSS for Designers creating sites with ASP.NET. Download Design Templates Get these ready-to-run design templates, and see best practices for designing ASP.NET
|
Revision #11
Thu, Aug 11, 2011 6:26 PM
by bryan strader
|
Master Pages
One of the great additions to ASP.NET 2.0 is Master Pages. Master Pages help us build a consistent and maintainable UI throughout a site. A master page can be created to hold those page elements that represent the common look and feel of a website. Various
|
Revision #4
Thu, Jun 19, 2008 6:15 PM
by mbanavige
|
Web Parts
ASP.NET Web part controls are an integrated set of controls that enables end users to organize the content, appearance and behavior of the web page. Links Here you can start with web part development- Web part development Here is an MSDN white paper about
|
Revision #17
Tue, Feb 12, 2008 8:02 PM
by anas
|
Web Controls
Web controls are ASP.NET controls which are understood and compiled on the server and render as HTML markup on the page. Most of the web server controls render their own HTML controls (or many HTML controls). The markup that is output froma web control can
|
Revision #8
Sat, Mar 10, 2012 6:26 AM
by Mastan Oli
|
Composite Controls
Composite controls are controls thatcombine multiple controls together to forma new reusable control. For example, a simple composite control could consist of both aLabel control and a TextBox control. You can use UserControls (.ascx) files to create some
|
New
Thu, Feb 14, 2008 10:15 PM
by vik20000in
|
HTML Server controls
Asp.Net provides way to work with the HTML Servercontrols on the server side programmingwith a set controls collectively called HTML Controls. These controls are grouped together in the Visual Studio Toolbox in the the HTML Control tab. The markup of the controls
|
Revision #5
Mon, Mar 25, 2013 7:56 PM
by ShelLuser
|
Themes
Asp.net 2.0 came with a new feature called a theme. A theme is a collection of property settings that allow you to define the look of pages and controls, and then apply the look consistently across pages in a Web application, across an entire Web application
|
Revision #3
Sun, Jun 22, 2008 11:11 AM
by anas
|
Building a color selector control
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 is the way that we are going to fill the colors. We can manually fill the available colors or we can find a way to
|
Revision #4
Mon, Sep 22, 2008 8:41 PM
by mbanavige
|
Referencing server controls from Javascript
In this article we will show you how to reference server side controls from JavaScript code (A servercontrol is a control that hasa runat="server" attribute). Generally, every server control has anID on the server side. One common problem when accessing
|
Revision #2
Sun, Nov 16, 2008 12:33 PM
by MisterFantastic
|
Suggestions for New Asp.Net Web Developers
Being a new web developer can be hard. There are way too many technologies and frameworks to learn and it is very easy to get lost in the sea of buzz words and new things. Below is a quick list of core areas an Asp.Net web developer should look into: 1 - WebForms
|
Revision #2
Thu, Dec 4, 2008 4:34 PM
by syed.tayyab.ali
|
Page.ParseControl
If you want to parse a html string at runtime with asp.net control in it you can use the method ParseControl, for example if you have a html fragment like this: table> tr> td>Name/td> /tr> tr> td>asp:TextBox id="name" runat="server"
|
Revision #2
Sat, Apr 25, 2009 2:25 PM
by mbanavige
|
Using Response.Redirect and Response.End in Try...Catch block
Using Response.Redirect and Response.End in Try...Catch block In ASP.NET if you are using Response.End - Used for terminating page execution or Response.Redirect - used for redirecting page to some other page, and you are including these statements in TRY
|
Revision #2
Tue, Apr 7, 2009 10:00 PM
by asim afzal
|
Printer Friendly Page
Today my topic is regarding the Printer Friendly Web Page in which I will share the best practice how to build the Printer Friendly page. The reason we need to have printer friendly pages because our normal pages are more complex with images, background, image
|
New
Wed, Sep 23, 2009 7:26 PM
by shakti singh tanwar
|
Get Information of Programatically Created Asp.Net page Using BuildManager class
Few days back I came across a problem on asp.net site wherein a user wanted to get information about controls of a Page from a different page. Problem with this approach is that server loads the requested page in memory. So at one time you can be only in one
|
New
Wed, Sep 23, 2009 7:28 PM
by nijhawan.saurabh
|
Client and Server (Common) Validation Logic.
Client and Server (Common) Validation Logic The Logic for validating input commonly on server side and showing the response onclient side is based on XMLHttpRequest (Clientside) and XMLDocument (Server Side).In Steps:1. First the form is converted to a well
|
New
Sat, Feb 27, 2010 4:56 PM
by prasanna.yelsangikr
|
Asp.net 2.0 Cross Post backing
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, LinkButton, and Image Button from that easily values can be access by prevoius pageBelow is example For the
|
Revision #3
Sun, Jun 19, 2011 11:12 AM
by horizon_net
|
Programatically Change Page Headers (Title, Stylesheets, Meta)
C# protected void Page_Load(object sender, EventArgs e){ // Change the title Page.Header.Title = "My Content Page Title"; // Change the background color Style myStyle = new Style(); myStyle.BackColor = System.Drawing.Color.Red; Page.Header.StyleSheet
|
New
Sun, Mar 21, 2010 6:53 PM
by Aamir Hasan
|
Difference between div and span tag
The basic difference between them is ,div is block level element and span is inline level element. span> and div> tags both allow a Web designer to style text and add other formatting attributes to their Web page. They are not interchangeable tags, though
|
Revision #2
Sat, Oct 30, 2010 2:03 PM
by codenickel
|
Add images in Image Rotator With the Help FileUpload Control
In case of ImageRotator we can use FileUpload Control To upload my images.Here I use it in a siple way:-Step 1:- we use Image Control (Image1),FileUpload Contol , Button(Button1..)and HiddenField ( for store the FileName), and a Save button to call the js
|
Revision #2
Sat, Oct 30, 2010 2:41 PM
by codenickel
|
Asynchronous Pages
Asynchronous Pages: Objective: Improves theScalability of website & Efficient design for time consuming process.Note: It should not be confused with Asynchronous request from Client side.AJAX used to improve the end user interface,where as Asynchronous
|
Revision #3
Thu, Oct 28, 2010 9:50 PM
by grizz
|
Prevent browser caching of web pages in asp.net which works in all browsers (IE/Firefox..)
In this articleI am going to explain how to prevent the browser caching of web pages in asp.net. It is the one of the biggest issues every developer willface.Why browser caching? To speed up the user experience on the web, most browsers implement a technology
|
Revision #2
Sat, Oct 30, 2010 2:52 PM
by codenickel
|
Fetch data from the database and place it in a marquee
1. First we should take the marquee tag in the source of our web form(Page.aspx) page like this:->marquee direction=”up” onmouseover=”this.start()” onmouseout=”this.stop()”scrolldelay=”300″ style=”height: 213px”>asp:Literal ID=”lt1″ runat=”server”>
|
Revision #5
Mon, Feb 4, 2008 8:00 AM
by JoeStagner
|
ASP.NET Controls - New in Version 3.5
Check out the Feature Specifications for Visual Studio 2008 and .NET Framework 3.5. These older documents give you an insight into what features made it (and didn't make it) into the Release. GridView- Take a look at all the articles that ScottGu has done
|