answersLogoWhite

0

ASP.NET

ASP.NET was first released in 2002, it is a web application framework. It was created by Microsoft. It is the successor to Active Server Pages (ASP).

500 Questions

What class does the ASP.NET Web Form class inherit from by default?

User Avatar

Asked by Wiki User

The ASP.NET Web Form is not a class, it's an HTML document; a plain-text file.

What is .asax file in aspnet?

User Avatar

Asked by Wiki User

Global.asax is a file that contains Application layer events like: Application Start, Application end, Application error ...

You can use those events to make some actions like filling data in cache, clear cache, send error email to system admin when errors occur ...

What is the difference between ASP.net and ASP?

User Avatar

Asked by Wiki User

The main difference between ASP and ASP.Net is that ASP is interpreted whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other hand, ASP.NET uses.NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language. Below some other difference are given.

1. Classic ASP uses a technology called ADO to connect and work with databases. ASP.NET uses the ADO.NET technology.

2. ASP has Mixed HTML and coding logic where in asp.net html and coding part are separated by code behind files.

3. ASP.NET purely object oriented whereas ASP is partially object oriented.

4. For ASP No in-built support for XML whereas in ASP.NET full XML Support for easy data exchange.

I think above details help you a lot. I hosted my website at Asp.net hosting of Mywindowshosting.com.

How many types of authorization and authentication provided by ASP.net?

User Avatar

Asked by Wiki User

Authentication

!) form based Authentication

2) Windows " "

3) Passport "

What is the latest version of aspnet?

User Avatar

Asked by Wiki User

The Latest stable version of ASP.net is 3.5

Microsoft has although released the beta version(RC) of ASP.NET 4.0 along with MS Visual Studio 2010 this february. And the final stable release of ASP.NET 4.0 is expected soon by the April 2010.

Thanks & Regards,

Shoaib R Khan - SRK

Update: ASP.NET 4.0 and Microsoft Visual Studio 2010, have been released, making them the latest stable versions of ASP.NET

What is the full form of Asmx in asp.net?

User Avatar

Asked by Wiki User

ASMX - Active Server Method Extended

ASPX - Active Server Page Extended

ASCX - Active Server Control Extended

What asp stand for programming language?

User Avatar

Asked by Wiki User

Active Serve Page

How do you convert string hello world into hello world?

User Avatar

Asked by Wiki User

They are identical, no conversion required.

How do you make Images show in a website that you creaed in aspnet Visual studio 2005 none of the images show in the browser.Is there some setting in visual studio 2005?

User Avatar

Asked by Wiki User

Try adding the tilde ~ at the begining of the path. This starts the path at the website root.

"~\images\Image,jpg"

How do you get path of a DLL from inside the DLL itself?

User Avatar

Asked by Wiki User

http://www.codeproject.com/KB/DLL/DLLModuleFileName.aspx

What is the difference between ASP.net and JAVA?

User Avatar

Asked by Wiki User

ASP.NET and Java are two frameworks/languages for web development. ASP.NET stands for Active Server Pages and is applied to Microsoft's .NET framework.

Difference between Cookies and Session in AspNet?

User Avatar

Asked by Wiki User

* The main difference between cookies and sessionsis that cookies are stored in the user's browser, and sessions are not. This difference determines what each is best used for.

* A cookie can keep information in the user's browser until deleted. If a person has a login and password, this can be set as a cookie in their browser so they do not have to re-login to your website every time they visit. You can store almost anything in a browser cookie. * The trouble is that a user can block cookies or delete them at any time. If, for example, your websites shopping cart utilized cookies, and a person had their browser set to block them, then they could not shop at your website. * Sessions are not reliant on the user allowing a cookie. They work instead like a token allowing access and passing information while the user has their browser open. The problem with sessions is that when you close your browser you also lose the session. So, if you had a site requiring a login, this couldn't be saved as a session like it could as a cookie, and the user would be forced to re-login every time they visit.

Can you serve ASP.NET with Apache?

User Avatar

Asked by Shdus1

Yes this can be done. For complete instructions refer to related links.

How you stop a page to refresh in ASPNet?

User Avatar

Asked by Wiki User

You can use ajax to prevent refresh the page

Is asp.net platform independent or not?

User Avatar

Asked by Wiki User

ASP.NET is not a language in itself rather a web technology that uses .NET programming languages to build dynamic web sites and web applications. I suppose the question is if .NET is platform-independent?

My answer would be 'currently, no'. .NET is slowly catching up but it is still way to go before it become platform independent. The framework works only on WINDOWS at present and not on other OS. I would say it is language independent. That is to say any language targeting CLR can be used to write code for applications.

A new project called MONO is in works which will allow the .NET framework to be installed on LINUX but there's no official support from MS on this as of now.

Who are the competitors of ASP.net?

User Avatar

Asked by Wiki User

-Java Server Pages -PHP

-Ruby on Rails

--JSF,Google web toolkit

Please list all page events in ASP.NET?

User Avatar

Asked by Wiki User

Following are the Page life cycyle events of an ASP.NET application: -

- Page request.
- Start.
- Page initialization.
- Load .
- Validation.
- Postback event handling.
- Rendering.
- Unload.

See related links for details about each stage.