<< < 8 9 10 11 12 13 14 15 16 17 18 > >>   Sort: Date

What is impersonation in ASP.NET
What is impersonation in ASP.NET ? By default, ASP.NET executes in the security context of a restricted user account on the local machine. Sometimes you need to access network resources such as a file on a shared drive, which requires additional permissions. One way to overcome this restriction is t...
2007-10-24, 5050👍, 0💬

What is ACID fundamental? What are transactions in SQL SERVER
What is ACID fundamental? What are transactions in SQL SERVER ? A transaction is a sequence of operations performed as a single logical unit of work. A logical unit of work must exhibit four properties, called the ACID (Atomicity, Consistency, Isolation, and Durability) properties, to qualify as a t...
2007-10-25, 5049👍, 0💬

What is the main difference between Gridlayout and FlowLayout
What is the main difference between Gridlayout and FlowLayout ? GridLayout provides absolute positioning for controls placed on the page. Developers that have their roots in rich-client development environments like Visual Basic will find it easier to develop their pages using absolute positioning, ...
2007-10-24, 5047👍, 0💬

What is CODE Access security
What is CODE Access security? CAS is part of .NET security model that determines whether or not a piece of code is allowed to run and what resources it can use while running. Example CAS will allow an application to read but not to write and delete a file or a resource from a folder..
2007-10-22, 5042👍, 0💬

Can you list best practices for globalization and localization
Can you list best practices for globalization and localization? Below are the best practices while developing international language support software: Do not hardcode strings or user interface resources. Make sure your application depends on Unicode. When ever you read or write data from various enc...
2007-11-02, 5041👍, 0💬

What are different IIS isolation levels
What are different IIS isolation levels? IIS has three level of isolation:- LOW (IIS process):- In this main IIS process and ASP.NET application run in same process. So if any one crashes the other is also affected. Example let’s say (well this is not possible) I have hosted yahoo, hotmail .amazon a...
2007-10-24, 5040👍, 0💬

What are different bindings supported by WCF
What are different bindings supported by WCF? WCF includes predefined bindings. They cover most of bindings widely needed in day to day application. But just incase you find that you need to define something custom WCF does not stop you. So let’s try to understand what each binding provides. BasicHt...
2007-11-04, 5036👍, 0💬

What are the different elements in Functions points 2
What are the different elements in Functions points 2? Output results exits the application boundary. EQ does not contain any derived data. Derived data means any complex calculated data. Derived data is not just mere retrieval but are combined with additional formulae to generate results. Derived d...
2007-10-30, 5027👍, 0💬

What is difference between Dataset. clone and Dataset.copy
What is difference between Dataset. clone and Dataset. copy ? Clone: - It only copies structure, does not copy data. Copy: - Copies both structure and data.
2007-10-24, 5026👍, 0💬

What is Unicode and why was it introduced
What is Unicode and why was it introduced? In order to understand the concept of Unicode we need to move little back and understand ANSI code. ASCII (ask key) stands for American Standard Code for Information Interchange. In ASCII format every character is represented by one byte (i.e. 8 bits). So i...
2007-11-01, 5025👍, 0💬

What are Daemon threads and how can a thread be created as
What are Daemon threads and how can a thread be created as Daemon? Daemon thread's run in background and stop automatically when nothing is running program. Example of a Daemon thread is "Garbage collector". Garbage collector runs until some .NET code is running or else its idle. You can make a thre...
2007-10-22, 5025👍, 0💬

What is Maximum Pool Size in ADO.NET Connection String
What is Maximum Pool Size in ADO.NET Connection String?
2007-10-24, 5024👍, 0💬

How to use a checkbox in a datagrid
How can I track event in checkbox which is one of the columns of a datagrid ? Note: - This is normally asked when the interviewer want to see that have you really worked practically on a project. Following are the steps to be done :- 1. In ASPX page you have to add Itemtemplate tag in datagrid. &...
2007-10-24, 5013👍, 0💬

What is Modeling and why UML ?
What are advantages of using UML? As the name suggest UNIFIED MODELING LANGUAGE. Modelling has been around for years, not only in software field but also in other trades like civil, mechanical etc. Example in civil engineering drawing the main architecture built of diagram is a model by itself. Mode...
2007-10-26, 5010👍, 0💬

Can you compare ASP.NET sessions with classic ASP
Can you compare ASP.NET sessions with classic ASP? ASP.NET session caches per user session state. It basically uses gHttpSessionStateh class. Following are the limitations in classic ASP sessions :- ã ASP session state is dependent on IIS process very heavily. So if IIS restarts ASP session vari...
2007-10-23, 5008👍, 0💬

Do you know Use Case points
Do you know Use Case points? In CD we have a complete free PDF tutorial of how to prepare software quotation. It has all the estimation technology that today’s software industry uses.
2007-10-30, 5007👍, 0💬

What is three tier architecture
What is three tier architecture? The three tier software architecture emerged in the 1990s to overcome the limitations of the two tier architecture. There are three layers when we talk about three tier architecture:- User Interface (Client) :- This is mostly the windows user interface or the Web int...
2007-10-24, 5007👍, 0💬

What is denormalization
What is denormalization ? Denormalization is the process of putting one fact in numerous places (its vice-versa of normalization).Only one valid reason exists for denormalizing a relational design - to enhance performance.The sacrifice to performance is that you increase redundancy in database.
2007-10-25, 5005👍, 0💬

What is ManualResetEvent and AutoResetEvent
What is ManualResetEvent and AutoResetEvent ? Threads that call one of the wait methods of a synchronization event must wait until another thread signals the event by calling the Set method. There are two synchronization event classes. Threads set the status of ManualResetEvent instances to signaled...
2007-10-22, 5005👍, 0💬

What is one way operation
What is one way operation? IsOneWay equal to true ensures that the client does not have to wait for the response. So methods marked by IsOneWay to true should always return void. In this the caller does not get anything in return so it is called as one-way communication. In order to understand one w...
2007-11-04, 5002👍, 0💬

Who is a stakeholder
Who is a stakeholder ? A stakeholder is anyone who has something to gain or lose as a result of the completion or failure of this project or phase Note:- It’s not only the end customer the stakeholder. Project managers, Project Lead, even programmers, testing department etc. are stake holders of pro...
2007-10-30, 5001👍, 0💬

How do we access viewstate value of this page in the next page
How do we access viewstate value of this page in the next page ? View state is page specific; it contains information about controls embedded on the particular page. ASP.NET 2.0 resolves this by embedding a hidden input field name, __POSTBACK . This field is embedded only when there is an IButtonCon...
2007-10-23, 4997👍, 0💬

What are the main components of WCF
What are the main components of WCF? We need to define three main components in WCF: Service class. Hosting environment End pointWe need to define three main components in WCF:- Service class. Hosting environment End point
2007-11-04, 4995👍, 0💬

What the different phase/steps of acquiring a proxy object in
What the different phase/steps of acquiring a proxy object in Webservice ? Following are the different steps needed to get a proxy object of a webservice at the client side :- ã Client communicates to UDI node for WebService either through browser or UDDI's public web service. ã UDII responds wit...
2007-10-23, 4992👍, 0💬

<< < 8 9 10 11 12 13 14 15 16 17 18 > >>   Sort: Date