Geeks Talk

Prepare for your Next Interview




ASP.Net & VB.Net

This is a discussion on ASP.Net & VB.Net within the ASP.NET forums, part of the Web Development category; 1.What is the difference between ASP.Net and VB.Net? 2.Pls explain abt Assembly....


Go Back   Geeks Talk > Web Development > ASP.NET

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-14-2008
Junior Member
 
Join Date: Jul 2008
Location: Chennai
Posts: 1
Thanks: 0
Thanked 2 Times in 1 Post
sornalakshmi is on a distinguished road
ASP.Net & VB.Net

1.What is the difference between ASP.Net and VB.Net?
2.Pls explain abt Assembly.
Reply With Quote
The Following 2 Users Say Thank You to sornalakshmi For This Useful Post:
Sponsored Links
  #2 (permalink)  
Old 07-17-2008
Junior Member
 
Join Date: Jul 2008
Location: Hyderabad
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
praveku is on a distinguished road
Re: ASP.Net & VB.Net

An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit, or as accessible by code outside that unit.

Assemblies are self-describing by means of their manifest, which is an integral part of every assembly. The manifest:

* Establishes the assembly identity (in the form of a text name), version, culture, and digital signature (if the assembly is to be shared across applications).
* Defines what files (by name and file hash) make up the assembly implementation.
* Specifies the types and resources that make up the assembly, including which are exported from the assembly.
* Itemizes the compile-time dependencies on other assemblies.
* Specifies the set of permissions required for the assembly to run properly.
* This information is used at run time to resolve references, enforce version binding policy, and validate the integrity of loaded assemblies. The runtime can determine and locate the assembly for any running object, since every type is loaded in the context of an assembly. Assemblies are also the unit at which code access security permissions are applied. The identity evidence for each assembly is considered separately when determining what permissions to grant the code it contains.
Reply With Quote
  #3 (permalink)  
Old 07-18-2008
Junior Member
 
Join Date: Jul 2008
Location: Mumbai
Posts: 7
Thanks: 0
Thanked 1 Time in 1 Post
sudhakarr.net is on a distinguished road
Re: ASP.Net & VB.Net

Quote:
Originally Posted by sornalakshmi View Post
1.What is the difference between ASP.Net and VB.Net?
2.Pls explain abt Assembly.
HI,
ASP.NET is TECHNOLOGy
VB.NET is LANGUAGE

c#,C++,j#,vb.net...languages supports ASP.NET

ASSEMBLY:
Assembly is a collection of files
1) private assembly
2) shared assembly

we can build private assembly and we can use that assembly in application
but we need to follow some rules to create shared assembly
it should be strong name, means unique name and we have to place shared assembly in
GAC and we can use this shared assembly in any application
Reply With Quote
  #4 (permalink)  
Old 07-19-2008
Junior Member
 
Join Date: Dec 2007
Location: Chennai
Posts: 10
Thanks: 1
Thanked 1 Time in 1 Post
raghulvarma is on a distinguished road
Re: ASP.Net & VB.Net

asp.net is simple a library that makes it easy for you to create web applications that run against the .NET runtime (similar to the java runtime).

vb.net is a language that compiles against the common language runtime, like C#. Any .NET compliant language can use the asp.net libraries to create web applications.

Assemblies
Assembly is unit of deployment like EXE or a DLL.An assembly consists of one or more files (dlls, exe’s, html files etc.), and
represents a group of resources, type definitions, and implementations of those
types. An assembly may also contain references to other assemblies.An assembly is completely self-describing.An assembly contains metadata
information, which is used by the CLR for everything from type checking and
security to actually invoking the components methods.Multiple versions can be deployed side by side in different folders
Reply With Quote
The Following User Says Thank You to raghulvarma For This Useful Post:

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved