Search results for query: *

  1. A

    Batch deletion in datagrid

    Try this, Protected Sub grdvUser_RowDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles grdvUser.RowDeleting strUserId = e.Keys.Item("UserID") 'Deleting References or batch DeleteUser() 'Deleting User SqlDtSrc.DeleteCommand = "DELETE FROM...
  2. A

    My datagrid refuses to call my delete command procedure.

    Try this, Protected Sub grdvUser_RowDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles grdvUser.RowDeleting strUserId = e.Keys.Item("UserID") 'Deleting User SqlDtSrc.DeleteCommand = "DELETE FROM ct_users Where UserID='" &...
  3. A

    Not able to run the web application

    Your IIS is not properly configured Best Regards, Ashish ashishm@itechplanet.com
Back
Top