Determine Position of Object Relative to Page
Question: I am using the eventObj.x and eventObj.y to obtain the position of a link when the mouse is over it to determine where to show a help text box.
Question: I am using the eventObj.x and eventObj.y to obtain the position of a link when the mouse is over it to determine where to show a help text box.
Question: Can I write statements to add/delete the control objects like command buttonsat runtime like we do in java C++ ? Iam under the assumption that once we populate a
Question: We are doing a small site with some ASP content. When we get data from a memo field that has CR/LFs at the end of the lines for formatting
Question: I am trying to use document.writeln to write a table onto a floating menu bar. Part of the table cell’s events is Java code. When it reaches the semicolons
Question: Can I instantiate an abstract class? Answer: No, you cannot instantiate an abstract class. However, you can declare a pointer or a reference to it: class Abs{public: virtual void
You should always use Option Explicit statement in your .asp file. Thisstatement will enforce that you explicitly declare all the variables in thescript. The whole problem: VBScript allows you to
You should always prefer to use Local variables. Local variables reside within functions and subs. They have local scope and limited lifetime. These variables are compiled into numeric references and
Here is a simple way by which you can display a greeting message to a user at the time of login.There are certain scenarios where you can use thisfeature to
The type that a template takes as an argument must have external linkage. This means that you cannot instantiate a template with a locally-declared type: int main(){ struct S {