Hi,Recently i deployed a website using godaddy.com.but while accessing the website we r not getting internal pages.I m getting an error likeAn error has occurred while establishing a connection to the
Latest Answer: Please check if the connection string(Server,Databasename, and login credentials) mentioned in the web.config file is correct. ...
Explain the concept of Remoting.
Latest Answer: Remoting is the concept of working in different application domains. In a net connected application http Protocols are stateless by default. To bring in the objects of different types and get their information as which method, property is being used ...
How dot net differs from other programming languages?
Latest Answer: Other programming languages get compiled and run in their own specific run time environments and are not inter-operable.Where Dot Net supports programming languages run in a common runtime environment called CLR and get compiled into MSIL code which ...
If a web application is spread over 3 web servers, than what is be the best approach to manage state of login form?
Latest Answer: The Login state can be maintained by having the Session state stored in State Server which means that we have to store the Session state information in the Server being prompted in the State Connection string in Web.Config file of the Application ...
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: Execute Scaler returns the value of first cell of the result. thats why mainly used to get the value of aggregate functions like sum,count,min,max etc.ThanksJpkVirus ...
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?
Latest Answer: Class library gets converted to dll files if they do not have an entry point namely the public shared sub main()(in VB.NET).They contain methods,properties and other entities which can be used in another class when the library dll is refered with ...
Name any 6 languages supported by .NET?
Latest Answer: .Net supports nearly 61 programming languages and few are J Script, IronPython, IronRuby, IronLisp, P#, Fan etc. ...
What is ADO .NET? Define the Data providers and classes of ADO.net and its purpose with example?
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top