database to textbox

asp.net , db Ethiopia
  • 12 years ago

    Hi, I use this code to update my database,

         conn.Open()
            cmd.CommandText = "Update [aa] Set [aa] = @confirmed Where [aa] = @aa"
            cmd.CommandType = CommandType.Text
            cmd.Parameters.Add("@a, SqlDbType.VarChar).Value = "aa"
            cmd.Parameters.Add("@aa", SqlDbType.NChar).Value = aa.Text
         
            '  cmd.ExecuteNonQuery()
          

     What I want now is to retrieve data from the database, and show it on a textbox, how can i do that?

    ex. if i want the value of a , b,c ,d (in a text box )from users and where f = funny
     

    Thanks

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“It is practically impossible to teach good programming style to students that have had prior exposure to BASIC. As potential programmers, they are mentally mutilated beyond hope of regeneration.” - E. W. Dijkstra