Tags:ASP.NET Questions | 91 views
ASP.Net is an “environment”, and VB.Net is a programming language. You can write ASP.Net pages (called “Web Forms” by Microsoft) using VB.Net (or C#, or J# or Managed C++ or any one of a number of .Net compatible languages).
Confusingly, there is an IDE that Microsoft markets called VB.Net, which allows you to write and compile [...]
Tags:ASP.NET Questions | 77 views
A language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL for short). This is called as Managed Code. This Managed code is run in .NET environment. So after compilation to this IL the language is not a barrier. A code [...]
Tags:AJAX Questions | 81 views
Microsoft first implemented the XMLHTTPRequest object in Internet Explorer 5 for Windows as an ActiveX object. It is the term coined after this support.
Asynchronous javascript and XML. Nobody invented AJAX, Jesse James Garrett of Adaptive Path coined the phrase early 2005 - but the tech was already in place much earlier than that.
[...]
Tags:Testing Questions | 106 views
How would you deal with changes being made a week or so before the ship date?
How would you deal with a bug that no one wants to fix? Both the SDE and his lead have said they won’t fix it.
Write a function that counts the number of primes in the range [1-N]. Write the test [...]