Anybody knows how to transfer a value from a grid in a modal popup to a textbox on the page? When you click on a value from the grid view the value should be transferred to the textbox. . . . .
1 thought on “How to transfer a value from a grid in a modal popup to a textbox on the page in ASP. NET?”
Leave a Comment
You must be logged in to post a comment.
In the click event of the grid, set the textbox’s Text property to the value in the grid row or cell (whichever you want to transfer).