Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP.NET 2.0 > Server Controls > HTML Control
Search:
What's New - What's Hot


HtmlAnchor        
Total Hits: 35  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The sample illustrates using the HtmlAnchor control (). HtmlAnchor is used to navigate from the client page to another page. The HtmlAnchor control supports data binding to its HRef and InnerHtml properties, as shown by the listed example. Read the article for further detail!...

HtmlForm        
Total Hits: 26  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

An HtmlForm control is required to process postback requests. A Web Forms page might only have one server side "<"form">" tag; however, client forms (no runat=server attribute) can also postback to server-side logic as long as a server-side form is present on the page....

Dynamically Setting the Page's Title in ASP.NET 2.0        
Total Hits: 45  |  Today: 0 Author: Giri Sankar       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HTML standard defines a number of metadata elements that can optionally be added to a web page. One of the most common is the title element, which appears in the head element and names the page. The value of the title, if provided, appears in the browser's Window title bar and also is the default name provided when bookmarking a web page. Moreover, many search engines display the page's title as the clickable link when it appears in the results. For these reasons, from a web developer standp...

HtmlButton        
Total Hits: 29  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlButton control renders as an HTML 4.0 "<"button">". This differs from "<"input type="button">" in that it enables Web developers to create rich user interface form buttons that can be composed from embedded HTML elements (and even other ASP.NET server controls)....

Convert HTML tables to a DataSet        
Total Hits: 26  |  Today: 0 Author: Suhailnabi       Rating:  
Read Reviews | Write Review |   Your Rating: 

I recently needed to do some "screen scraping" from a locally installed 3rd party web application and then do some data manipulation based on the results. The application in question wrote the results out to the page inside table tags and there were several of these tables on the page. I decided that the approach I would take would be to read all of these HTML tables, identifying them with a Regular Expression, and then convert them into one DataSet where I could then perform the required manipu...

Character Set used for HTML, XSLT, XML        
Total Hits: 15  |  Today: 0 Author: Chinnu21       Rating:  
Read Reviews | Write Review |   Your Rating: 

Following is the table containing entities or characters used for referencing in HTML, XSLT, and XML as a complete reference. In HTML, you can use specific code references to display special characters. As example   is used to place a space in your text, in other words, a non-breaking space; and © is the equivalent of placing a copyright sign on the page, i.e., ©
However, in XSLT you are not allowed to use these types of characters, you need to use the ISO-8859-1 character set. So, ...

HtmlGeneric        
Total Hits: 25  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlGenericControl provides an ASP.NET server control implementation for all unknown HTML server control tags not directly represented by a specific HTML server control (for example, "<"span">","<"div">","<"body">", and so on). The sample illustrates using the HtmlGenericControl control for the "<"body">" tag....

HtmlImage        
Total Hits: 30  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

An HtmlImage control renders the image file specified by its Src property in an HTML "<"img">" tag. The sample illustrates using the HtmlImage control. Read the article to learn more!...

HtmlInputButton        
Total Hits: 26  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlInputButton control ("<"Input type=button">") is similar in function to the "<"button">" tag, except that it can target any browser. The HtmlInputButton control also supports the Reset and Submit button types, which are used only with forms. Submit submits the form, whereas Reset restores all of the entry fields in a form to their initial values....

HtmlInputCheckBox        
Total Hits: 30  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlInputCheckBox control accepts Boolean (true/false) input. When selected, its Checked property is true. The sample illustrates using the HtmlInputCheckBox control. Read the article to learn more!...

HtmlInputFile        
Total Hits: 27  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

An HtmlInputFile control handles uploading of binary or text files from a client browser to the server. File-upload works with all HTML 3.2 and later Web clients. Note that the Enctype attribute on the "<"form">" tag must be set to "multipart/form-data". The sample illustrates using the HtmlInputFile control. Read the article to learn more!...

HtmlInputHidden        
Total Hits: 35  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

You can use hidden controls within HTML forms to embed non-visible information that will be sent back to the server the next time a user performs a postback. This technique is commonly used to persist session-dependent information without using cookies or session state. The Web Forms framework uses this feature of HTML to automatically store and restore the view state of ASP.NET server controls across round trips to the server....

HtmlInputImage        
Total Hits: 26  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

An HtmlInputImage control is used to create a graphical button. Unlike HtmlButton controls, all standard browser clients support image buttons. The sample illustrates using the HtmlInputImage control. Read the article to learn more!...

HtmlInputRadioButton        
Total Hits: 39  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

An HtmlInputRadioButton control creates a single radio button input field. Setting the Name attribute the same way on each radio button forms a group in which only one radio button can be selected at a time. The selected state must be tested on the individual radio buttons, however. The sample illustrates using the HtmlInputRadioButton control....

HtmlInputText        
Total Hits: 25  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlInputText control is a single-line input control that lets the user enter text. HtmlInputText supports two behaviors. If Type is Text, HtmlInputText operates as a standard text box. If Type is Password, the user's input is masked by the "*" character to keep it private. The sample illustrates using the HtmlInputText control in both Text and Password modes. Read the article to learn more!...

HtmlSelect        
Total Hits: 24  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlSelect control provides a drop-down list. The sample illustrates using the HtmlSelect control. Read the article to learn more!...

HtmlTable, HtmlTableRow and HtmlTableCell        
Total Hits: 50  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlTable control lets you build up a table programmatically by adding HtmlTableRow controls to the table's Rows collection and HtmlTableCell controls to the row's Cells collection. You can add content to a table cell programmatically by adding controls to the cell's Controls collection. The sample illustrates using the HtmlTable control. Read the article to learn more!...

HtmltextArea        
Total Hits: 26  |  Today: 0 Author: Microsoft .Net Framework SDK       Rating:  
Read Reviews | Write Review |   Your Rating: 

The HtmlTextArea control is a multiline input control that lets the user enter text. The display width of HtmlTextArea is determined by its Cols property, and the display height is determined by the Rows property. The sample illustrates using the HtmlTextArea control. Read the article to learn more!...



DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net