What are the three tags of a form tag in HTML form
How do we make a poperty read only? PriVATe property get(read only )
To make property read only
I want make a property readonly for FirstName(string)
public string FirstName
{
get{return _firstName;}
//Not apply set code here
}
This method is readonly property of FirstName.
Property can be made readonly by using "readonly" keyword with it.
such properties dont have set method ,only get method is applicable in this case.
Do com keep track of all the object references(accounting)?
Yes COM keeps track of all instances of the object refrences. It does so using the AddRef and Release methods defined in the IUnknown interface which every COM class must inherit and hence implement. ...
When is marshalling not necessary?
Hai,
When Ever component runs with in client App Domain process then marshalling is not necessary.Marshalling is nothing but gathering or packaging the information into message for transferring across the network requird in distributed environment
Appdomain or Context.
Hai,
When u put . operator in .NET IDE internally bubble event is raised that corresponding event Handler gets automatically invoked which contains code for identifying properities/methods of an object.
In what languages in asp written.
ASP code is written in scripting languages -> VB Script, JScript
Change RecordSet
Java is Platform indepandent Langg,witch can use for web development componant and web site also
How do you create drop down combos in HTML ? Select tag
Drop dowm can done through (<select  ...
How do you remotely administer ms iis??
using 1)IIS Manager
2) Terminal Services
3)Remote Administration (HTML) Tool
MFC provides stricter type checking for the return and parameter types of message handler functions. This new behavior notifies the developer of potential problems by flagging potentially unsafe messa...
COM is the component Object Model is a system whch creates application which are binary form that is language independent , object oriented ,modular and reusable .
Difference between dim object as object and dim obj as myform
Dim object as object --> the general VB object was created
Dim obj as myform --> the myform object was created.
The first one is general object and second one is the specified object.
How many data types are supported in vbscript
It supports only one.The varient type
VBScript consists of only one data type (Variant)
Variabiles saved between the sessions (ASP, PHP etc.)
Can be stored in server side or client side (with cookies).
Option Explicit requires that all variable names be defined (with the Dim statement).
Reference:
Reference Link
To enforce variable declaration
What is the key advantage of windows NT challenge/response security?
What problems do the vendors of ODBC technology face with asp/ADO ?
How do you administer connection pooling in iis 3.0
How do you administer connection pooling in iis 4.0
There are basic three tags for HTML form:
1) ID
2) action
3) method
eg: