Click here to Skip to main content
15,898,373 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to called server side function on onblur event of textbox Pin
kubben28-Jun-07 9:01
kubben28-Jun-07 9:01 
AnswerRe: How to called server side function on onblur event of textbox Pin
Schatak24-May-11 1:14
professionalSchatak24-May-11 1:14 
QuestionASP Menu Item Pin
gavthegenius28-Jun-07 5:48
gavthegenius28-Jun-07 5:48 
AnswerRe: ASP Menu Item Pin
martin_hughes28-Jun-07 7:29
martin_hughes28-Jun-07 7:29 
QuestionSystem Information Pin
oskardiazdeleon28-Jun-07 5:41
oskardiazdeleon28-Jun-07 5:41 
QuestionnLog Help needed Pin
Ridge Howison28-Jun-07 5:26
Ridge Howison28-Jun-07 5:26 
Questiondelete confirm in datagrid with vb asp.net Pin
DonVBguy28-Jun-07 4:56
DonVBguy28-Jun-07 4:56 
AnswerRe: delete confirm in datagrid with vb asp.net Pin
Fred_Smith28-Jun-07 7:42
Fred_Smith28-Jun-07 7:42 
You might have better luck putting this in the ItemDataBound event...

Otherwise, you could try looping through the rows after binding the database (in whatver sub you do that) with something like the below, amending the FindControl paramter with the name you have assigned the delete button in your datagrid. You can find you lblProgram value similarly, and amnend the js accordingly.

Dim c As Button
Dim dgItem As DataGridItem, js As String
For Each dgItem In dgProgram.Items
js = "javascript: return confirm('Do you really want to delete this item?');"
c = dgItem.Cells(14).FindControl("btnDel")
c.Attributes.Add("onclick", js)
c = Nothing
Next

Good luck..
Fred
GeneralRe: delete confirm in datagrid with vb asp.net Pin
DonVBguy28-Jun-07 10:21
DonVBguy28-Jun-07 10:21 
GeneralRe: delete confirm in datagrid with vb asp.net Pin
Fred_Smith28-Jun-07 10:46
Fred_Smith28-Jun-07 10:46 
Questionon focus out event for asp:textbox Pin
rahul.net1128-Jun-07 3:59
rahul.net1128-Jun-07 3:59 
AnswerRe: on focus out event for asp:textbox Pin
Senseicads28-Jun-07 4:55
Senseicads28-Jun-07 4:55 
GeneralRe: on focus out event for asp:textbox Pin
rahul.net1128-Jun-07 6:00
rahul.net1128-Jun-07 6:00 
GeneralRe: on focus out event for asp:textbox Pin
Senseicads28-Jun-07 6:02
Senseicads28-Jun-07 6:02 
GeneralRe: on focus out event for asp:textbox Pin
rahul.net1128-Jun-07 6:24
rahul.net1128-Jun-07 6:24 
GeneralRe: on focus out event for asp:textbox Pin
Senseicads28-Jun-07 6:44
Senseicads28-Jun-07 6:44 
GeneralRe: on focus out event for asp:textbox Pin
rahul.net1128-Jun-07 7:15
rahul.net1128-Jun-07 7:15 
QuestionRegular Expression for Date Pin
Khan.Bangash28-Jun-07 3:38
Khan.Bangash28-Jun-07 3:38 
AnswerRe: Regular Expression for Date Pin
Sathesh Sakthivel28-Jun-07 3:41
Sathesh Sakthivel28-Jun-07 3:41 
GeneralRe: Regular Expression for Date Pin
Khan.Bangash28-Jun-07 3:46
Khan.Bangash28-Jun-07 3:46 
GeneralRe: Regular Expression for Date Pin
Sathesh Sakthivel28-Jun-07 3:52
Sathesh Sakthivel28-Jun-07 3:52 
GeneralRe: Regular Expression for Date Pin
Khan.Bangash28-Jun-07 3:57
Khan.Bangash28-Jun-07 3:57 
GeneralRe: Regular Expression for Date Pin
Sathesh Sakthivel28-Jun-07 3:59
Sathesh Sakthivel28-Jun-07 3:59 
GeneralRe: Regular Expression for Date Pin
Khan.Bangash28-Jun-07 4:23
Khan.Bangash28-Jun-07 4:23 
GeneralRe: Regular Expression for Date Pin
Sathesh Sakthivel28-Jun-07 4:30
Sathesh Sakthivel28-Jun-07 4:30 

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.