Click here to Skip to main content
15,906,625 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: div style.height Pin
Guffa11-Apr-06 4:20
Guffa11-Apr-06 4:20 
GeneralRe: div style.height Pin
CoolASL11-Apr-06 4:30
CoolASL11-Apr-06 4:30 
QuestionJSP NOTES Pin
pradeepbhat10-Apr-06 7:10
pradeepbhat10-Apr-06 7:10 
QuestionHow does Eolas Patent Lawsuit affect the way .NET Web Controls' behavior? Pin
Hashir Zuberi10-Apr-06 1:25
Hashir Zuberi10-Apr-06 1:25 
GeneralRe: How does Eolas Patent Lawsuit affect the way .NET Web Controls' behavior? Pin
Guffa10-Apr-06 2:35
Guffa10-Apr-06 2:35 
QuestionWhy do not Upload a file on host by ASP Pin
Thangnc10-Apr-06 0:19
Thangnc10-Apr-06 0:19 
AnswerRe: Why do not Upload a file on host by ASP Pin
CWIZO10-Apr-06 2:02
CWIZO10-Apr-06 2:02 
QuestionIs this IFrame javascript code correct? Pin
KaKa'9-Apr-06 23:10
KaKa'9-Apr-06 23:10 
Hi,

Is the javascript code used to create an IFrame correct?
The script is typed in a seperate javascript file and asp.net(vb) code will call the javascript method.

The script below is supposed to display an IFrame on the webpage when the webpage loads.



function showIFrame()
{
var iframe = document.createElement("iframe");

iframe.id = "testiframe";
iframe.name = "testiframe";
iframe.frameborder = 1;
iframe.style.top = 100;
iframe.style.left = 100;
iframe.height = 185;
iframe.width = 175;
iframe.style.position = "absolute";
iframe.style.display = "block";
iframe.scrolling = "auto";
iframe.src = "C:\Test.html"
window.document.body.appendChild(iframe);

return false;

}



However, there is no IFrame displayed when the page loads.
Is there anything wrong with the jscript above? Smile | :)
AnswerRe: Is this IFrame javascript code correct? Pin
Vasudevan Deepak Kumar9-Apr-06 23:51
Vasudevan Deepak Kumar9-Apr-06 23:51 
QuestionFORM method Pin
Amol Ravatale9-Apr-06 22:48
Amol Ravatale9-Apr-06 22:48 
AnswerRe: FORM method Pin
Vasudevan Deepak Kumar9-Apr-06 23:50
Vasudevan Deepak Kumar9-Apr-06 23:50 
AnswerRe: FORM method Pin
Guffa10-Apr-06 1:09
Guffa10-Apr-06 1:09 
QuestionIHTMLSelectElement onchange event Pin
abhishekks9-Apr-06 21:15
abhishekks9-Apr-06 21:15 
QuestionPre-Populating Data in a 3rd Parties Web Form Pin
TFE8-Apr-06 2:36
TFE8-Apr-06 2:36 
AnswerRe: Pre-Populating Data in a 3rd Parties Web Form Pin
Vasudevan Deepak Kumar9-Apr-06 19:49
Vasudevan Deepak Kumar9-Apr-06 19:49 
QuestionPrint Setup in Javascript Pin
thainam7-Apr-06 15:55
thainam7-Apr-06 15:55 
AnswerRe: Print Setup in Javascript Pin
Vasudevan Deepak Kumar9-Apr-06 19:50
Vasudevan Deepak Kumar9-Apr-06 19:50 
GeneralRe: Print Setup in Javascript Pin
thainam10-Apr-06 15:51
thainam10-Apr-06 15:51 
QuestionGoogle speaks english? Pin
Drca7-Apr-06 5:27
Drca7-Apr-06 5:27 
AnswerRe: Google speaks english? Pin
Nrupesh Soni7-Apr-06 9:44
Nrupesh Soni7-Apr-06 9:44 
QuestionUse Activx DLL in Web Service Pin
satidaya27-Apr-06 2:30
satidaya27-Apr-06 2:30 
AnswerRe: Use Activx DLL in Web Service Pin
George L. Jackson7-Apr-06 10:25
George L. Jackson7-Apr-06 10:25 
QuestionHelp needed urgent VBScript - Extract specific text by identifying HTML tags before the text from .htm file and log into a text file Pin
giftsana6-Apr-06 20:21
giftsana6-Apr-06 20:21 
AnswerRe: Help needed urgent VBScript - Extract specific text by identifying HTML tags before the text from .htm file and log into a text file Pin
Sushant_Mathur6-Apr-06 22:45
Sushant_Mathur6-Apr-06 22:45 
GeneralRe: Help needed urgent VBScript - Extract specific text by identifying HTML tags before the text from .htm file and log into a text file Pin
giftsana6-Apr-06 22:46
giftsana6-Apr-06 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.