Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: datagrid control Pin
John-ph4-Nov-07 1:26
John-ph4-Nov-07 1:26 
AnswerRe: datagrid control Pin
enjoycrack4-Nov-07 3:36
enjoycrack4-Nov-07 3:36 
AnswerRe: datagrid control Pin
Paul Conrad4-Nov-07 5:03
professionalPaul Conrad4-Nov-07 5:03 
QuestionImage Into Oracle!!!! Pin
push19884-Nov-07 0:05
push19884-Nov-07 0:05 
AnswerRe: Image Into Oracle!!!! Pin
enjoycrack4-Nov-07 3:38
enjoycrack4-Nov-07 3:38 
GeneralRe: Image Into Oracle!!!! Pin
push19884-Nov-07 18:13
push19884-Nov-07 18:13 
QuestionDelete row from gridview after bind Pin
playout3-Nov-07 22:20
playout3-Nov-07 22:20 
AnswerRe: Delete row from gridview after bind Pin
jaysaran4-Nov-07 23:11
jaysaran4-Nov-07 23:11 
After Binding the data into the grid we have use this code:

Dim row As GridViewRow<br />
         Dim i As Integer<br />
            'Delete Customers from grid<br />
            i = 0<br />
            For Each row In gdvUsers.Rows<br />
                 If (row.Cells(4).Text = "") Then<br />
                    gdvUsers.DeleteRow(i)<br />
                 End If<br />
                 i = i + 1<br />
            Next


And include this row deleting event:

<br />
Protected Sub gdvUsers_RowDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles gdvUsers.RowDeleting<br />
<br />
        gdvUsers.Rows.Item(e.RowIndex).Visible = False<br />
<br />
    End Sub


Best Regards

JaySaran
QuestionGridView Bound values Pin
Amr M. K.3-Nov-07 22:08
Amr M. K.3-Nov-07 22:08 
Questionhow can send and recive data to a web page? Pin
B.A3-Nov-07 22:00
B.A3-Nov-07 22:00 
AnswerRe: Sample Code Example Pin
Christian Graus3-Nov-07 21:40
protectorChristian Graus3-Nov-07 21:40 
Generalapologise Pin
B.A4-Nov-07 3:05
B.A4-Nov-07 3:05 
GeneralRe: my question is joke ! Pin
John-ph4-Nov-07 3:29
John-ph4-Nov-07 3:29 
GeneralRe: my question is joke ! Pin
Paul Conrad4-Nov-07 5:06
professionalPaul Conrad4-Nov-07 5:06 
GeneralRe: my question is joke ! Pin
pmarfleet4-Nov-07 5:08
pmarfleet4-Nov-07 5:08 
QuestionNeed Advice (Atlas or AJAX) Pin
Ahmad Adnan3-Nov-07 20:23
Ahmad Adnan3-Nov-07 20:23 
AnswerRe: Need Advice (Atlas or AJAX) Pin
Christian Graus3-Nov-07 21:39
protectorChristian Graus3-Nov-07 21:39 
QuestionGridView (A to Z)+Sourabh Pin
Dot Net Jantu3-Nov-07 20:20
Dot Net Jantu3-Nov-07 20:20 
AnswerGridView (A to Z)+Sourabh Pin
Sarani Ravindran4-Nov-07 20:01
Sarani Ravindran4-Nov-07 20:01 
Questioncreate subdomail automatically by programming??? Pin
mr.mohsen3-Nov-07 20:08
mr.mohsen3-Nov-07 20:08 
AnswerRe: create subdomail automatically by programming??? Pin
Michael Sync7-Nov-07 5:45
Michael Sync7-Nov-07 5:45 
Questionasp.net with vb.net Pin
rakeshreddyperati3-Nov-07 19:43
rakeshreddyperati3-Nov-07 19:43 
AnswerRe: asp.net with vb.net Pin
Christian Graus3-Nov-07 20:22
protectorChristian Graus3-Nov-07 20:22 
Questionlocalize menu control in ASP.net 2.0 Pin
Rajesh_K_Sharma3-Nov-07 19:12
Rajesh_K_Sharma3-Nov-07 19:12 
QuestionError with ASP.NET 2.0 Pin
nickabradley3-Nov-07 10:26
nickabradley3-Nov-07 10:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.