Tag Archives: Copy

Copy Cell in GridView

In GridView add this column:  <asp:CommandField ButtonType=”Button” SelectText=”” ShowSelectButton=”True” /> [\sourcecode] Then in code-behind: Protected Sub GridViewHandLinks_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs)   If e.CommandName.Equals(“Select“) Then   Dim index As Integer = Convert.ToInt32(e.CommandArgument)   Dim row As GridViewRow … Continue reading

Posted in ASP.NET, Programming, VB.NET | Tagged , , | Leave a comment