Web Hosting Sitemap  
Find Affordable Web Hosting Providers - Tophosts.com
  

Find Affordable Web Hosting

FIND WEB HOSTING TOP 25 WEB HOSTS WEB HOSTING FORUM NEWSLETTER ONLINE BACKUP REVIEWS

Go Back   Web Hosting Forum - Webhosting Discussions at TopHosts.Com > Web Hosting Help
User Name
Password


Reply
 
Thread Tools Display Modes
Old 08-16-2004, 11:15 PM   #11
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

Hello all,

Back with some more information on ASP.NET, lets talk in detail about web server controls :P

AdRotator - This control is erally useful if you want to display advertisements on your site, by using this control, you can just giev the paths of the ad images you want to show along with their URL's & then every time the page is loaded it cycles through these ads and picks one.

You can also set the priority of which ad should be shown more often by using the <impressions> tag.


Button - Used to create a clickable button, you can use this to perform a action when clicked by the user, by default it submits the information on the page backto the web server, but it can also be programmed to perfrom some other action.


Calender - Displays a calender in a very pretty graphical format, you can also move back and forth between in this calender, add notes & events for a particular day.


CheckBox - Used for displaying a Checkbox . You can set its property to be checked by default.


Data Grid - The data grid control can display data in the form of a table, also it provides functioanlity to modify the data.


Data List - Similar to Data Grid in the sense that it also displays data, but here you can specify how it will be displayed through the use of templates & styles.


Drop Down List - This allows you to create a drop-down list, from which the user can chose a particular option. Once a option has been selected it can also be automatically sent back to the server without the user having to click on any 'submit' or 'go' button.


HyperLink - Allows you to create a link.


Image - Allows you to display a image on the page.


Any comments/suggestions/corrections are welcome


Some info from: www.asp411.com
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 08-19-2004, 12:59 AM   #12
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

Hey all,

Just continuing where I left off from about web server controls. J



Image Button - Very similar to the button control, however in place of a clickable button, there is a image. When the image is clicked with the mouse it executes a certain function which is defined in the 'onClick' property of the image control.

Link Button - Use this to create buttons that open a new link, it has the functionality of the button control but the looks of a hyperlink control.

Label - This control is used to specify some text that will be displayed on the web page, it is normally sed for displaying dynamic text on the web page, i.e. show some text after a certain event has taken place.


List Box - Creates a list box that shows the user many choices or options, you can change the property of this box to make it a single or multiple selection box.


Any comments/suggestions/corrections are welcome

You can find more details about web sever controls at www.411asp.net & www.w3schools.com
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 08-24-2004, 08:10 PM   #13
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

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
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 08-30-2004, 10:17 PM   #14
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

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
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 09-01-2004, 03:38 PM   #15
dasp
TopHosts Member
 
Join Date: Jun 2004
Posts: 50
dasp is on a distinguished road
Default Re: Basic Information about ASP.NET

If you go to the Official Microsoft site: http://www.asp.net and look at the bottom left navigation, you will find a whole bunch of online resource sites to find out more information on ASP.NET

DiscountASP.NET Hosting
http://www.DiscountASP.NET
Experience the Power of ASP.NET for Less
dasp is offline   Reply With Quote
Old 09-01-2004, 09:32 PM   #16
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

Dear Dasp,

Thank you for your contribution
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 09-01-2004, 09:56 PM   #17
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

Hi all,

Just wanted to talk a bit 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
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting

Last edited by ashish : 09-01-2004 at 10:18 PM.
ashish is offline   Reply With Quote
Old 09-05-2004, 11:00 PM   #18
iration
Newbie
 
Join Date: Sep 2004
Posts: 9
iration is on a distinguished road
Default Re: Basic Information about ASP.NET

I would also like to add that if you're going to use ASP.NET web hosting, I would strongly recommend that you find a host that is properly licensed and hosts that are members of variouis Microsoft programs.

I have developed sites for various clients using ASP.NET and only choose hosts that are Featured Members of the ASP.NET Hosting Advantage Program.
iration is offline   Reply With Quote
Old 09-06-2004, 11:52 PM   #19
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

well said iration
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Old 09-06-2004, 11:54 PM   #20
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

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
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


» Links
   webmaster forums
   merchant select

» Links


All times are GMT -4. The time now is 11:38 AM.




SEO by vBSEO 2.4.0