nagasai


{ City } pune
< Country > india
* Profession * analyst programmer
User No # 91133
Total Questions Posted # 1
Total Answers Posted # 4

Total Answers Posted for My Questions # 2
Total Views for My Questions # 4062

Users Marked my Answers as Correct # 60
Users Marked my Answers as Wrong # 8
Questions / { nagasai }
Questions Answers Category Views Company eMail

do any browser need activeX object to run javascripts?

2 JavaScript 4062




Answers / { nagasai }

Question { Wipro, 6009 }

How can you clean up objects holding resources from within
the code?


Answer

The recommended practice is to implement both Finalize as
well as Dispose methods on an object which needs to clean up
unmanaged resources. The Finalize method would serve as a
backup mechanism in the event that the Dispose is never
called. The garbage collector would perform the object
finalization and prevent a permanent leak of the unmanaged
resource.


Is This Answer Correct ?    4 Yes 0 No

Question { Wipro, 9688 }

What is the raise event used for?


Answer

The RaiseEvent statement raises an event previously declared
with the "Event" statement. Since only classes can raise
events, usage of this keyword is reserved for class modules,
forms and user controls.

Is This Answer Correct ?    7 Yes 0 No


Question { Wipro, 9929 }

How can you clean up objects holding resources from within
the code?


Answer

2 PROCEDURES FORT THIS:
1)Make that value of object as null once the scope is finished.
2)use dispose(); method

Is This Answer Correct ?    1 Yes 0 No

Question { T3 Softwares, 20943 }

What is the Difference between AJAX and Javascript?


Answer

AJAX is a part of Javascript programming. Javascript is just
a client-side scripting language that is used to control a
web page once a user has downloaded the page. AJAX is a
particular usage of Javascript in which javascript
communicates with the remote script and receives the
response from the server, without having to reload the whole
page.

Javascript is a client-side scripting programming
language... AJAX is a technique incorporating the use of
Javascript, a server-side scripting language, and XML. But
javascript is the main core of ajax-based systems. AJAX
stands for Asynchronous Javascript and XML

Is This Answer Correct ?    48 Yes 8 No