Click here to Skip to main content
15,898,792 members
Home / Discussions / Web Development
   

Web Development

 
JokeRe: how to display xml file in iframe Pin
Vasudevan Deepak Kumar14-Nov-07 19:43
Vasudevan Deepak Kumar14-Nov-07 19:43 
QuestionShow/hide Div tag in popup window??? Pin
vicky45713-Nov-07 8:52
vicky45713-Nov-07 8:52 
GeneralRe: Show/hide Div tag in popup window??? Pin
Guffa13-Nov-07 11:07
Guffa13-Nov-07 11:07 
GeneralShow/hide Div tag in popup window??? Pin
vicky45713-Nov-07 13:10
vicky45713-Nov-07 13:10 
GeneralRe: Show/hide Div tag in popup window??? Pin
Michael Sync13-Nov-07 19:43
Michael Sync13-Nov-07 19:43 
AnswerRe: Show/hide Div tag in popup window??? Pin
Guffa14-Nov-07 2:55
Guffa14-Nov-07 2:55 
GeneralRe: Show/hide Div tag in popup window??? Pin
vicky45714-Nov-07 13:58
vicky45714-Nov-07 13:58 
AnswerRe: Show/hide Div tag in popup window??? Pin
Guffa14-Nov-07 19:43
Guffa14-Nov-07 19:43 
vicky457 wrote:


The javascript: protocol is only used if you put the Javascript in an url. If you use it anywhere else, it isn't recognised as a protocol but it becomes a label instead.

As you are using xhtml, argument names have to be lower case.

<img src="btn_print.gif" onclick="OpenSummaryPage();"/>

vicky457 wrote:
var url ="summary.aspx?comment=" + hdShowComment.value;


Use the getElementById to access elements in the page.

var url = "summary.aspx?comment=" + document.getElementById('hdShowComment').value;

vicky457 wrote:
.CssShowDiv{DISPLAY: true}


"true" is not a valid value for the display style. Use the value "block" to display a block element (e.g. a div) and the value "inline" to display an inline element (e.g. a span).


Have you verified that the css really is used on the page? You can for example add a background color or a border to some element on the page to see if it's used.

Css files are cached longer than pages, so an older version of the css file might be used. Press ctrl+F5 to reload the page and all files it uses.

Experience is the sum of all the mistakes you have done.

GeneralRe: Show/hide Div tag in popup window??? Pin
vicky45723-Nov-07 8:39
vicky45723-Nov-07 8:39 
GeneralRe: Show/hide Div tag in popup window??? Pin
Michael Sync17-Nov-07 5:10
Michael Sync17-Nov-07 5:10 
QuestionTable Schema Pin
Civic0613-Nov-07 6:59
Civic0613-Nov-07 6:59 
AnswerRe: Table Schema Pin
andyharman13-Nov-07 7:24
professionalandyharman13-Nov-07 7:24 
QuestionSOAP message handler Pin
Spack13-Nov-07 1:28
Spack13-Nov-07 1:28 
QuestionAuto Suggest textbox in a page. Pin
mgr_2k713-Nov-07 0:04
mgr_2k713-Nov-07 0:04 
AnswerRe: Auto Suggest textbox in a page. Pin
Christian Graus13-Nov-07 0:30
protectorChristian Graus13-Nov-07 0:30 
GeneralRe: Auto Suggest textbox in a page. Pin
mgr_2k713-Nov-07 17:01
mgr_2k713-Nov-07 17:01 
GeneralRe: Auto Suggest textbox in a page. Pin
Michael Sync13-Nov-07 19:39
Michael Sync13-Nov-07 19:39 
AnswerRe: Auto Suggest textbox in a page. Pin
Vasudevan Deepak Kumar16-Nov-07 1:38
Vasudevan Deepak Kumar16-Nov-07 1:38 
QuestionServer Explorer not visible. Pin
mgr_2k712-Nov-07 16:56
mgr_2k712-Nov-07 16:56 
AnswerRe: Server Explorer not visible. Pin
Michael Sync12-Nov-07 18:15
Michael Sync12-Nov-07 18:15 
GeneralRe: Server Explorer not visible. Pin
mgr_2k712-Nov-07 23:30
mgr_2k712-Nov-07 23:30 
GeneralRe: Server Explorer not visible. Pin
Vasudevan Deepak Kumar13-Nov-07 20:58
Vasudevan Deepak Kumar13-Nov-07 20:58 
Questionweb services question Pin
jesarg12-Nov-07 9:47
jesarg12-Nov-07 9:47 
AnswerRe: web services question Pin
Laubi12-Nov-07 22:20
Laubi12-Nov-07 22:20 
GeneralRe: web services question Pin
jesarg13-Nov-07 5:40
jesarg13-Nov-07 5:40 

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.