How dot net differs from other programming languages?
If a web application is spread over 3 web servers, than what is be the best approach to manage state of login form?
Can some please answer this question in detail and also how they are going to be useful inDotNet
Latest Answer: The dot net frameworks allow you to build serviced components that can use com+ services. These components of dot net framework runs in the manages execution environment of dot net framework that is share their content with com+ application.Now the question ...
What is the purpose of Execute scalar method of Command object ?
Latest Answer: ExecuteScalar method is used to retrieve a single value (EX: aggregate value such as Count etc) from a database ...
Write Code to get IP address of the Current Machine?
Latest Answer: public void UseDNS(){ string hostName = Dns.GetHostName(); Console.WriteLine("Host Name = " + hostName); IPHostEntry local = Dns.GetHostByName(hostName); foreach(IPAddress ipaddress ...
What is Class Library? Define its Benefit?
Name any 6 languages supported by .NET?
Latest Answer: VB.Net,C#, J#, COBOL, VC++, F#, Cw ...
What is ADO .NET? Define the Data providers and classes of ADO.net and its purpose with example?
Explain about 6h4 methods you have used to perform serialization?
What is the difference between a Windows Service Application and a Web Service Application? Please don't hand in the definition from some text book... I'm looking for the functional difference.
Latest Answer: Web service is used to transfer the data over a network like internet using WSDL ( web service descriptive language) by using a protocol like SOAP(Simple Object Access Protocol) .Windows service is a long running program.windows ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top