Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Intellisense/jscript

Status
Not open for further replies.

Fursten

Programmer
Dec 27, 2000
403
PT
Hi,

If I create a vbscript inside an html page (using Interdev) Im able to get intellisense for vbscript. However, the same is not true to jscript.

Any ideias?

Thank you
 
The only time I have been unable to get the intellisense for javascript is when the object I am trying to reference is somewhat unusual. For example, in a page that I have a form that has the querystring attached using inline server-side code, I cannot then find the form and thus will not see any intellisense. However, I otherwise have no problems with it. The example where I won't see the form attributes in intellisense is when my form looks like this (or I response.write the line that creates the form or other object):
Code:
Response.Write "<form name=""frmMain"" method=""post"" action=""page2.asp"">"
[COLOR=green]or[/color]
<form name="frmMain" method="post" action="Document.asp
	<%=objCOM.QueryString("Document",Request.QueryString("propid"),Request.QueryString("docid"),,,,,,,,,,,Request.QueryString("tenid"))%>"> [COLOR=green]'Where the querystring is being created from a .dll function server-side.[/color]

------------------------------------------------------------------------------------------------------------------------
If you don't have a sense of humor, you probably don't have any sense at all.
- Anonymous
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top