|  | |  |
08-24-2004, 05:20 PM
|
#16 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hi all,
Here Some more Web Serve Controls. Literal - Just like the Label control, lets you display text on web pages, only does not allow you to apply styles. Panel - This is a container control, you can group other controls within this control and then use them together. Place Holder - There may be some controls that you want to appear dynamically i.e. after a certain event takes place, and you want them to appear at a particular place on your page, it is at that time that place holder control is really useful, you can reserve a place for such kind of controls on your page and then when that event occurs the control will appear on the position where the place holder control has been placed. Radio Button - Displays a Radio Button on the page, you can use radio buttons to help the user make a choice from a list of choices. Radio Button List - The radio button list is much ore useful if you have got a lot of choices and you want the user to make only one choice, it binds radio buttons together and allows the user to make only one choice.
Any Suggestions/Comments/Corrections welcome
Some information from www.411asp.net & www.aspalliance.com |
| |
08-30-2004, 07:13 PM
|
#17 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hi all,
This is a wrap up of the rest of the web server controls. Repeater - It displays the items from a source defined by you in a certain template way, It does not have a predefined way/template for displaying data by itself, you have to define one yourself before using it. Table - Use this to create a table, used along with the next two controls to make a proper table. You can insert HTML elements like 'text' and/ or controls into a table. Table Cell - Creates in a cell in a table created with the Table Control. Table Row - Inserts a row in a table that has been created with the use of Table Control. Text Box - Inserts a text box, you can define it to be multi-line text box or single line by changing its 'TextMode' property. Xml - Reads from an XML file and then puts the output from the resultant code onto the web page at the specified position.
Any suggestions/corrections/additions welcome
Some information from http://www.411asp.net |
| |
09-01-2004, 07:49 PM
|
#18 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hi all,
Just wanted to tell something to all the newbies about the various HTML server controls.
Normally, all HTML elements in a ASP.NET file are treated as normal text, however, in order to process a HTML element at the server, you need to add a runat = "server" property in the form and the Html tags.
Once you do that you can programmatically control a Html element, in fact all the HTML controls allow you to control some or the other Html tag at the server.
Here is a list of the various HTML server controls along with the Html tag that they control. HtmlAnchor - Used for controlling the <a> tag, which is associated with hyper linking. HtmlButton - Controls the <button> tag. HtmlForm - Controls forms. HtmlGeneric - All those Html controls for which there is no specific Html server control are handled by this control, for ex: <body>, <div>, <span>, etc. HtmlImage - Controls the image tags. HtmlInputButton - Controls the submit, reset & button HTML elements. HtmlInputCheckBox - Controls the checkbox element. HtmlInputFile - Controls the file element. HtmlInputHidden - Controls the hidden element.
Any suggestion/Corrections/Additions welcome
Some info from www.411asp.net & www.aspalliance.com |
| |
09-06-2004, 09:10 PM
|
#19 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hi all,
Some more HTML Server Controls. HtmlInputImage - Use this when the browser does not support DHTML and/or the HtmlButton, this control is used for the <input type="image"> HTML element allowing you to Create a graphical button, i.e. you can create a button using a image, instead of a regular button. HtmlInputRadioButton - Controls the <input type="radio">, use this to create & control radio buttons on a web page, you can group multiple radio buttons together using the 'name' property, just provide the same value, once radio buttons are grouped together, you can only select one button from that group, i.e. you are allowed to make only one choice. HtmlInputText - Controls <input type="text"> and <input type="password"> HTML elements, text boxes are created on the page with the use of this control. When the input type is set to 'password' the values entered in the text field are masked i.e. instead of numbers and word '*' are displayed. These controls are normally used to accept inputs from the user. HtmlSelect - Controls a <select> HTML element i.e. a drop down list box, you can also specify this drop down box to be either just a list box using the 'size property' or a multiple selection list box by using the 'multiple' property, in which case it ceases to be a drop-down box and just becomes a list box.
Any suggestions/corrections/comment welcome
Some information from www.411asp.net |
| |
09-08-2004, 09:52 PM
|
#20 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hey everyone,
Just finishing off the rest of the HTML server controls. HtmlTable - Controls the <table> HTML element, allows you to customise a HTML table on a page by giving access to various table properties like background colour, border colour, visibility, inner html etc. etc. this control is normally used in conjunction with the table row and table cell control. HtmlTableRow - Controls the <tr> HTML element, after creating the table, you need to put rows into it and then you place the data in a cell of that row, the HtmlTableRow is used after the HtmlTable control and allows you to manipulate the rows in a table by giving access to various properties like the background colour of the table row, its height etc. HtmlTableCell - Controls the <td>and <th> HTML tags. This is the last of the table controls in HTML controls, this control is normally used after the HtmlTableRow control has been used i.e. this one manipulates the actual data inside a cell, this too gives access to cell properties like background colour, alignment etc. HtmlTextArea - Controls a <textarea> HTML tag. Manipulates the multi line textbox crated using the <textarea> tag. you can adjust the height and width of the textarea etc.
Any suggestions/corrections/comment welcome
Some information from www.411asp.net & www.w3schools.com |
| |
09-14-2004, 10:52 PM
|
#21 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| Hi all,
Just wanted to talk a bit about ASP.Net Event Handlers:
An event handler is basically a action that takes place after a event is triggered i.e. a piece of code of executed following some action triggered by the user.
For example: After clicking on the ‘Submit’ button on a web page, all the information in the various fields on that page are submitted back to the server. So, the event here is the clicking of the ‘Submit’ button and the action to that is submission of the information back to the user.
Another example could be, that a piece of code is executed every time a page is loaded.
As piece of code here could be to display the current time and date every time a page is loaded, you can easily do this by using the ‘Page_Load’ event handler of ASP.NET and then writing the relevant code in it
Any comments/suggestions/corrections welcome
Some information from www.411asp.net |
| |
09-21-2004, 03:07 PM
|
#23 (permalink)
| | Registered User
Join Date: Sep 2004
Posts: 1
| If you go to the Official Microsoft ASP.NET site, http://www.asp.net - on the bottom left side there is a huge list of .NET resources. |
| |
09-21-2004, 10:18 PM
|
#24 (permalink)
| | Registered User
Join Date: Jul 2004
Posts: 46
| thanks for sharing that. |
| | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -8. The time now is 02:38 AM. |
Copyright © 2000-2008, Milano Interactive Web Hosting provided by Portal 360 Web Hosting |  | |