Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6675521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:52:00+00:00 2026-05-26T03:52:00+00:00

I want to be able for a user to click on a button and

  • 0

I want to be able for a user to click on a button and then it runs a function and then shows the results in the data list.

i know i can get data and bind it through my tables

Sub BindCommsDataList(ByVal dlComms As DataList, ByVal sAddrno As String, ByVal sNameNo As String)
    Dim mySelectQuery As String = "SELECT * FROM table"
    Dim myConnection As New MySqlConnection(Session("localConn"))
    Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
    myConnection.Open()
    Dim myDataAdapter = New MySqlDataAdapter(myCommand)
    Dim myDataSet As New DataSet
    myDataAdapter.Fill(myDataSet, "comms")
    dlComms.DataSource = myDataSet
    dlComms.DataKeyField = "seq"
    dlComms.DataBind()
    myConnection.Close()
End Sub

But how do i run a function which binds data manually

EDIT:

The data revived back will be in text format. So ideally i just want to do..

RtnDealerName.Text = xoGetWebPage.RtnDealerName

but it says i dont have access to RtnDealerName

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:52:01+00:00Added an answer on May 26, 2026 at 3:52 am

    I don’t think there’s any way to add items directly to the DataList control, but you can use the results to build a datasource control, like a DataTable for example:

    DataTable table = new DataTable();
    table.Columns.Add("Col1", typeof(string));
    table.Columns.Add("Col2", typeof(string));
    
    TableRow row = table.NewRow();
    row.SetField<string>("Col1", "Foo");
    row.SetField<string>("Col2", "Bar");
    table.Rows.Add(row);
    
    DataList1.DataSource = table;
    DataList1.DataBind();
    

    Here’s some simple markup for the DataList control:

    <asp:DataList ID="DataList1" runat="server">
        <ItemTemplate>
            <%#Eval("Col1")%>: <%#Eval("Col2")%>
        </ItemTemplate>
    </asp:DataList>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want the user to be able to click a button and move to
I want the user to be able to have some data already in the
I want to record user states and then be able to report historically based
I want a form where user can change password. I am able to encrypt
I want to be able to change a button image on click which isn't
I want users to be able to click a POI and then be able
I want to be able to authenticate a user by using their domain UserId
I have a user that want to be able to select a textbox and
I want to be able to preview an image for a user before they
When a user signs up on my site I want to be able to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.