|
-
Apr 5th, 2005, 06:59 AM
#1
Thread Starter
Frenzied Member
-
Apr 7th, 2005, 09:02 PM
#2
New Member
Re: How to display records inside text box using asp.net
To add edit button, you would need to go to the property builder of the datagrid and a button column and add the edit, update and cancel one..
To show data in a textbox, try setting the textbox text property to the datarow value for that field
ie
myTextBox.Text = Dataset1.Tables("players" ).Rows(i).Item("fieldname")
-
Apr 9th, 2005, 01:24 PM
#3
Thread Starter
Frenzied Member
Re: How to display records inside text box using asp.net
 Originally Posted by ninster
To add edit button, you would need to go to the property builder of the datagrid and a button column and add the edit, update and cancel one..
To show data in a textbox, try setting the textbox text property to the datarow value for that field
ie
myTextBox.Text = Dataset1.Tables("players" ).Rows(i).Item("fieldname")

well i am not using any development sofware. could u show me the code.?Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|