Click here to Skip to main content
15,894,405 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Populate Dropdownlist in GridView EditItem Pin
R.Palanivel20-Aug-08 23:15
R.Palanivel20-Aug-08 23:15 
GeneralRe: Populate Dropdownlist in GridView EditItem Pin
Bardy8520-Aug-08 23:30
Bardy8520-Aug-08 23:30 
GeneralRe: Populate Dropdownlist in GridView EditItem Pin
R.Palanivel20-Aug-08 23:37
R.Palanivel20-Aug-08 23:37 
GeneralRe: Populate Dropdownlist in GridView EditItem Pin
Bardy8520-Aug-08 23:40
Bardy8520-Aug-08 23:40 
GeneralRe: Populate Dropdownlist in GridView EditItem Pin
R.Palanivel21-Aug-08 0:27
R.Palanivel21-Aug-08 0:27 
AnswerRe: Populate Dropdownlist in GridView EditItem [modified] Pin
dream_liner_7e720-Aug-08 23:45
dream_liner_7e720-Aug-08 23:45 
QuestionChanging the image in a DatGrid onmouseover Pin
bernie.h20-Aug-08 22:39
bernie.h20-Aug-08 22:39 
AnswerRe: Changing the image in a DatGrid onmouseover Pin
Bardy8520-Aug-08 23:10
Bardy8520-Aug-08 23:10 
This will give you a start. It changed the rows background onmouseover attribute.

protected void gvAdverts_RowCreated(object sender, GridViewRowEventArgs e)
    {
        // only apply changes if its DataRow
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            // when mouse is over the row, save original color to new attribute, and change it to highlight yellow color
            e.Row.Attributes.Add("onmouseover", "this.originalstyle=this.style.backgroundColor;this.style.backgroundColor='gray'");

            // when mouse leaves the row, change the bg color to its original value    
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=this.originalstyle;");
        }
    }

Questionplaying mp3 Pin
needhi_p20-Aug-08 22:23
needhi_p20-Aug-08 22:23 
AnswerRe: playing mp3 Pin
Christian Graus20-Aug-08 22:25
protectorChristian Graus20-Aug-08 22:25 
GeneralRe: playing mp3 Pin
needhi_p21-Aug-08 0:58
needhi_p21-Aug-08 0:58 
QuestionHow to find the gridview header control id using javascript?, Pin
Member 387988120-Aug-08 22:19
Member 387988120-Aug-08 22:19 
AnswerRe: How to find the gridview header control id using javascript?, Pin
R.Palanivel20-Aug-08 23:00
R.Palanivel20-Aug-08 23:00 
Questionjavascript problem Pin
krishnaveer20-Aug-08 21:05
krishnaveer20-Aug-08 21:05 
AnswerRe: javascript problem Pin
Christian Graus20-Aug-08 21:17
protectorChristian Graus20-Aug-08 21:17 
GeneralRe: javascript problem Pin
krishnaveer20-Aug-08 21:31
krishnaveer20-Aug-08 21:31 
GeneralRe: javascript problem Pin
Christian Graus20-Aug-08 21:52
protectorChristian Graus20-Aug-08 21:52 
GeneralRe: javascript problem Pin
astanton197821-Aug-08 9:05
astanton197821-Aug-08 9:05 
AnswerRe: javascript problem Pin
Abhijit Jana20-Aug-08 21:42
professionalAbhijit Jana20-Aug-08 21:42 
QuestionAt a time select only one gridview header checkbox only Pin
Member 387988120-Aug-08 20:43
Member 387988120-Aug-08 20:43 
AnswerRe: At a time select only one gridview header checkbox only Pin
Sandeep Akhare20-Aug-08 20:56
Sandeep Akhare20-Aug-08 20:56 
GeneralRe: At a time select only one gridview header checkbox only Pin
Member 387988120-Aug-08 21:02
Member 387988120-Aug-08 21:02 
Questionfile upload control under updatepanel Pin
UD(IA)20-Aug-08 19:50
UD(IA)20-Aug-08 19:50 
AnswerRe: file upload control under updatepanel Pin
esakkirajak20-Aug-08 22:06
esakkirajak20-Aug-08 22:06 
GeneralRe: file upload control under updatepanel Pin
UD(IA)21-Aug-08 19:56
UD(IA)21-Aug-08 19:56 

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.