Click here to Skip to main content
15,887,135 members
Home / Discussions / Web Development
   

Web Development

 
QuestionMultiple webpages Pin
dsaroop12-Jan-09 10:01
dsaroop12-Jan-09 10:01 
QuestionDownload and Install Pin
Armandt__12-Jan-09 2:58
Armandt__12-Jan-09 2:58 
AnswerRe: Download and Install Pin
Not Active12-Jan-09 4:48
mentorNot Active12-Jan-09 4:48 
GeneralRe: Download and Install Pin
Anshumas14-Jan-09 21:50
Anshumas14-Jan-09 21:50 
GeneralRe: Download and Install Pin
Not Active15-Jan-09 1:57
mentorNot Active15-Jan-09 1:57 
GeneralRe: Download and Install Pin
Vasudevan Deepak Kumar15-Jan-09 3:52
Vasudevan Deepak Kumar15-Jan-09 3:52 
AnswerRe: Download and Install Pin
Paddy Boyd12-Jan-09 5:28
Paddy Boyd12-Jan-09 5:28 
AnswerRe: Download and Install Pin
Armandt__12-Jan-09 18:50
Armandt__12-Jan-09 18:50 
GeneralRe: Download and Install Pin
Armandt__13-Jan-09 0:16
Armandt__13-Jan-09 0:16 
AnswerRe: Download and Install Pin
Anshumas14-Jan-09 21:38
Anshumas14-Jan-09 21:38 
GeneralRe: Download and Install Pin
Armandt__15-Jan-09 1:51
Armandt__15-Jan-09 1:51 
AnswerRe: Download and Install Pin
Vasudevan Deepak Kumar15-Jan-09 3:53
Vasudevan Deepak Kumar15-Jan-09 3:53 
Questionmultiple hide show content in i-frame . Pin
sam_psycho12-Jan-09 2:30
sam_psycho12-Jan-09 2:30 
AnswerRe: multiple hide show content in i-frame . Pin
Jon Rista12-Jan-09 6:55
Jon Rista12-Jan-09 6:55 
Questionjavascript to reset html-page does not work after postback Pin
livez12-Jan-09 2:08
livez12-Jan-09 2:08 
AnswerRe: javascript to reset html-page does not work after postback Pin
Rajasekharan Vengalil12-Jan-09 9:36
Rajasekharan Vengalil12-Jan-09 9:36 
GeneralRe: javascript to reset html-page does not work after postback Pin
livez13-Jan-09 1:07
livez13-Jan-09 1:07 
AnswerRe: javascript to reset html-page does not work after postback Pin
Mohammad Dayyan13-Jan-09 19:58
Mohammad Dayyan13-Jan-09 19:58 
GeneralRe: javascript to reset html-page does not work after postback Pin
livez13-Jan-09 21:54
livez13-Jan-09 21:54 
AnswerRe: javascript to reset html-page does not work after postback Pin
Anshumas16-Jan-09 0:25
Anshumas16-Jan-09 0:25 
QuestionHow to parse the HTML completely Pin
maoxintt11-Jan-09 23:32
maoxintt11-Jan-09 23:32 
QuestionHow to Generate Readonly or Password Protected MS Excel File from a ASP.NET Web Application. Pin
VivekNema11-Jan-09 21:41
VivekNema11-Jan-09 21:41 
QuestionNEWBIE - Javascript only works in IE, not FF3.05 - Help! Pin
Ginozzzz11-Jan-09 10:19
Ginozzzz11-Jan-09 10:19 
Perhaps someone could tell me what is wrong with this script please. It doesn't work in FireFox.

<asp:Button ID="butAddImg" Text="Image?" runat="server" OnClientClick='return SetViewImg(this,"fuAddImg");' CausesValidation="False" />
<asp:FileUpload ID="fuAddImg" Enabled="false" runat="server" />


<script language="javascript" type="text/javascript">

function FindCont(SourceCont,ContToFind){
  
  var conPf_array = SourceCont.name.split("$"); //break the name down
  var countArray = conPf_array.length; //measure how many elements to the array
  var ContPath = (conPf_array[0] + "$"); //set initial value
  for (var i = 1; i <= (countArray - 2); ++i)  //set up loop
  {
   ContPath = ContPath + (conPf_array[i] + "$"); //build  string
  }
  ContPath = ContPath + ContToFind; //add control name
  
return ContPath;



function SetViewImg(controlToEval, fuContName) {
 var fuControl = FindCont(controlToEval, fuContName);
 if (document.getElementById(fuControl).disabled == true) {
  document.getElementById(fuControl).disabled = false;
  return false;
 }

 else {
  document.getElementById(fuControl).disabled = true;
  return false;
 }
}


Thanks in advance.

}
AnswerRe: NEWBIE - Javascript only works in IE, not FF3.05 - Help! Pin
Aman Bhullar11-Jan-09 18:19
Aman Bhullar11-Jan-09 18:19 
GeneralRe: NEWBIE - Javascript only works in IE, not FF3.05 - Help! Pin
Ginozzzz11-Jan-09 22:46
Ginozzzz11-Jan-09 22:46 

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.