Click here to Skip to main content
15,913,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: There is not row at position 0 Pin
haleemasher13-Aug-09 23:52
haleemasher13-Aug-09 23:52 
AnswerRe: There is not row at position 0 Pin
Abhishek Sur13-Aug-09 23:58
professionalAbhishek Sur13-Aug-09 23:58 
GeneralRe: There is not row at position 0 Pin
haleemasher14-Aug-09 0:02
haleemasher14-Aug-09 0:02 
GeneralRe: There is not row at position 0 Pin
Abhishek Sur14-Aug-09 0:14
professionalAbhishek Sur14-Aug-09 0:14 
QuestionJS not working in Mozila Pin
janani1313-Aug-09 23:21
janani1313-Aug-09 23:21 
AnswerRe: JS not working in Mozila Pin
padmanabhan N13-Aug-09 23:24
padmanabhan N13-Aug-09 23:24 
AnswerRe: JS not working in Mozila Pin
Parwej Ahamad13-Aug-09 23:27
professionalParwej Ahamad13-Aug-09 23:27 
AnswerRe: JS not working in Mozila Pin
Abhishek Sur13-Aug-09 23:29
professionalAbhishek Sur13-Aug-09 23:29 
there is nothing written wrong in the code. The only thing that comes into my notice is

password_info.innerHTML


Always remove the existing childelements before you set the innerHTML, so that if there is any child elements present, IE will throw an error.

Use like this :

function  setContent(container, content) {
        if (!!container) {
            while (container.firstChild)
                container.removeChild(container.firstChild);

            var dummyDiv = document.createElement('div');
            dummyDiv.innerHTML = content;

            container.appendChild(dummyDiv);
        }
    }


Now call setContent(password_info,"yourhtml")

On your problem, I think there must be problem somewhere else. Check Mozilla Error Console for that entry. Thumbs Up | :thumbsup:

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

QuestionThe Problem of DataList and ModalPopup extender Pin
123chaminda13-Aug-09 23:10
123chaminda13-Aug-09 23:10 
AnswerRe: The Problem of DataList and ModalPopup extender Pin
padmanabhan N13-Aug-09 23:22
padmanabhan N13-Aug-09 23:22 
QuestionDropdownlist Pin
mylogics13-Aug-09 23:09
professionalmylogics13-Aug-09 23:09 
AnswerRe: Dropdownlist Pin
padmanabhan N13-Aug-09 23:19
padmanabhan N13-Aug-09 23:19 
GeneralRe: Dropdownlist Pin
mylogics13-Aug-09 23:24
professionalmylogics13-Aug-09 23:24 
AnswerRe: Dropdownlist Pin
KhandelwalA13-Aug-09 23:20
KhandelwalA13-Aug-09 23:20 
AnswerRe: Dropdownlist Pin
Abhishek Sur13-Aug-09 23:22
professionalAbhishek Sur13-Aug-09 23:22 
Questionfocus Pin
AndyInUK13-Aug-09 23:01
AndyInUK13-Aug-09 23:01 
AnswerRe: focus Pin
Vimalsoft(Pty) Ltd13-Aug-09 23:04
professionalVimalsoft(Pty) Ltd13-Aug-09 23:04 
AnswerRe: focus Pin
padmanabhan N13-Aug-09 23:07
padmanabhan N13-Aug-09 23:07 
AnswerRe: focus Pin
Coding C#14-Aug-09 2:23
Coding C#14-Aug-09 2:23 
Questionvideo gallery problem... Pin
RajpootRohan13-Aug-09 22:46
professionalRajpootRohan13-Aug-09 22:46 
AnswerRe: video gallery problem... Pin
padmanabhan N13-Aug-09 23:01
padmanabhan N13-Aug-09 23:01 
GeneralRe: video gallery problem... Pin
RajpootRohan13-Aug-09 23:55
professionalRajpootRohan13-Aug-09 23:55 
GeneralRe: video gallery problem... Pin
padmanabhan N13-Aug-09 23:57
padmanabhan N13-Aug-09 23:57 
GeneralRe: video gallery problem... Pin
Coding C#14-Aug-09 2:26
Coding C#14-Aug-09 2:26 
Questioninput string was not in a correct format Pin
haleemasher13-Aug-09 22:33
haleemasher13-Aug-09 22:33 

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.