1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

ASP.NET Cotrols

Discussion in 'C#' started by raghu1, Sep 26, 2011.

  1. #1
    What do you know about ASP.NET controls?
    Please Explain it.
     
    raghu1, Sep 26, 2011 IP
  2. Rainulf

    Rainulf Active Member

    Messages:
    373
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    85
    #2
    http://www.asp.net/mvc

    It has step-by-step tutorials about ASP.NET controls.. with detailed explanations, examples, and more.
     
    Rainulf, Oct 11, 2011 IP
  3. rodssmith

    rodssmith Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    In .NET ASP control are, easy and very much useful and one thing i want to add is, these controls makes .NET easy.
    Thanks
     
    rodssmith, Oct 17, 2011 IP
  4. RaviAuto

    RaviAuto Peon

    Messages:
    31
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    ASP.NET Web server controls are objects on ASP.NET Web pages that run when the page is requested and that render markup to a browser. Many Web server controls resemble familiar HTML elements, such as buttons and text boxes. Other controls encompass complex behavior, such as a calendar controls, and controls that manage data connections.
     
    RaviAuto, Oct 24, 2011 IP
  5. cisdeepa

    cisdeepa Peon

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Hi,
    There are three kinds of server controls in ASP.NET:
    • HTML Server Controls - Traditional HTML tags
    • Web Server Controls - New ASP.NET tags
    • Validation Server Controls - For input validation
    you can search detail about these controls on gogle.

    Thanks

    [HR][/HR] [h=2][/h]
     
    cisdeepa, Nov 21, 2011 IP
  6. offshoredataentry

    offshoredataentry Member

    Messages:
    121
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #6
    the controls in asp.net are very easy and useful which makes your website user-friendly with increased security level.
     
    offshoredataentry, Feb 9, 2012 IP
  7. ivickon

    ivickon Peon

    Messages:
    32
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    One of the best things about ASP.NET is the ability to easily separate code into different modules, unravelling presentation code from application logic. This allows developers with different skills sets to work on their area of speciality simultaneously (e.g. web designers working on HTML code while programmers work on ASP.NET code). Because of its object-orientated nature, ASP.NET also promotes code reuse.

    In ASP.NET, there are several features that we can use to make our code reusable and independent of other code. These features are: user controls, server controls, HTML controls, custom controls, components, and the code behind method.

    In this article, I will explain what each of these features are used for, and also show you how to use each one, by providing a number of simple yet detailed examples. To work with the examples in this article, you should have the .NET SDK installed on your Windows 98, NT, 2000, or XP machine. It
    In ASP.NET, user controls are like the replacement of server-side includes from traditional ASP. They allow you to separate code that is constantly reused (such as menu bars) into separate files, which provides us with two benefits:

    • It allows you to write less code, because we only have to link to the external file from any page that we want to use it on.
    • When you decide to change the code that a user control is composed of, you will only have to change it in one file, rather than on all of the pages where it is used.
    Let's take a look at an example of a user control, so as to demonstrate their use. We will create a HTML page that has a menu bar. Because we don't want to code the menu bar on every page, we will create a user control, which will represent the menu. Open up notepad enter following code:
     
    ivickon, Feb 25, 2012 IP
  8. sbglobal79

    sbglobal79 Banned

    Messages:
    724
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    55
    #8
    there are three type of control in asp.net . for more , you can help from Google.
     
    sbglobal79, Feb 26, 2012 IP
  9. cheenki

    cheenki Peon

    Messages:
    59
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #9
    cheenki, Mar 6, 2012 IP
  10. raspms

    raspms Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    raspms, Mar 21, 2012 IP
  11. aisyaziz

    aisyaziz Guest

    Messages:
    40
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    .net controls are real easy. and it'll help you through asp.net a lot esp if u're a beginner. but... you'll need to do some modifications in order to make it more efficient.
     
    aisyaziz, Mar 26, 2012 IP
  12. heloraghu

    heloraghu Member

    Messages:
    133
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    46
    #12
    .net ctrls are used to make the asp form tags to easy manner to make the application accurate .
     
    heloraghu, Mar 29, 2012 IP
  13. agitetech

    agitetech Peon

    Messages:
    122
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    ASP.NET Web server controls are objects on ASP.NET Web pages that run when the page is requested and that render markup to a browser..you can know more about them from W3Schools.com.
     
    agitetech, Dec 26, 2012 IP
  14. Rohan Das

    Rohan Das Active Member

    Messages:
    322
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    90
    #14
    w3schools is good for beginner. Even you can get learn other programming languages there
     
    Rohan Das, Dec 27, 2012 IP
  15. simran001

    simran001 Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #15
    Hi,

    ASP.NET Web server controls are objects on ASP.NET Web pages that run when the page is requested and that render markup to a browser. All HTML server controls must be within a <form> tag with the runat="server" attribute. The runat="server" attribute indicates that the form should be processed on the server. It also indicates that the enclosed controls can be accessed by server scripts.

    ASP.NET is a Web application, developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services. In ASP.NET we use ASP.NET Controls.

    example - <asp:control_name id="some_id" runat="server" />

    Web server controls are also created on the server and they require a runat="server" attribute to work. However, Web server controls do not necessarily map to any existing HTML elements and they may represent more complex elements.

    by - thewebspidy.com[TABLE="width: 191"]
    [TR]
    [TD="width: 191"][/TD]
    [/TR]
    [/TABLE]
     
    simran001, Jan 15, 2013 IP