SEO Software
Closed Thread
Results 1 to 4 of 4

Thread: datalist

  1. #1

    Thumbs up datalist

    please help me how to binding the data in the data list control in asp.net


  2. SEO Software

  3. #2

    Lightbulb

    Quote Originally Posted by ruchi_patel View Post
    please help me how to binding the data in the data list control in asp.net
    hey dear....
    here i am sending the useful links for you....
    please refer it........
    Link1
    Link2
    Link3

    hope it helps you...
    thanks....!!!

  4. #3

    Default

    You can use datalist same as datagrid in the asp.net and which language you are using c# or vb.net? let me know so I can guide you

  5. #4

    Default

    You can use the ASP.NET syntax to bind data to the ASP.NET server controls. To bind
    these controls to data, you first need to open the ASPX file for the Web Forms page.
    Then, you can use the appropriate syntax for data binding for different controls. To bind
    a property of a control to some data represented by an expression, use the following tag:
    <% # expression %>
    When the expression is evaluated, the value is loaded in the control's bound property.
    For example, you can bind the Text property of a Label control to a public property
    called ProductID of the page. To do so, use the following code:
    <asp:Label ID = "ProdID" runat = "Server" Text =
    '<% # ProductID %>' />
    In this code, the <% # ProductID %> tag is used to bind the Text property of the
    Label control to the ProductID property of the page.

Closed Thread

Similar Threads

  1. How to show data into datalist control?
    By Amar in forum ASP Help
    Replies: 1
    Last Post: 07-08-2009, 09:58 AM
  2. how to put the hyperlink in datalist
    By ruchi_patel in forum ASP Help
    Replies: 3
    Last Post: 06-23-2009, 08:43 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts