Explain Assemblies?,Difference between Panel and GroupBox?,Differences between ASP and ASP.NET?

Showing Answers 1 - 13 of 13 Answers

Anil Kumar

  • Jul 12th, 2005
 

Assemblies are single deployable unit which consist of classes structures and interface.they consist of metadata which desrcibes assembly version ,name ,type etc. They are known as logical DLL's . 
panel are scrollable and in panels captions can not be displayed. 
it is vice versa incase of group box 
 
Asp is not compiled that is interperated where as ASP.net is compiled. 

  Was this answer useful?  Yes

Shyam

  • Aug 16th, 2005
 

ASSEMBLIES 
 
Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. An assembly provides the common language runtime with the information it needs to be aware of type implementations. To the runtime, a type does not exist outside the context of an assembly. 
 

  Was this answer useful?  Yes

Shyam

  • Aug 16th, 2005
 

ASSEMBLIES 
 
Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. An assembly provides the common language runtime with the information it needs to be aware of type implementations. To the runtime, a type does not exist outside the context of an assembly. 
 

  Was this answer useful?  Yes

subrat p

  • Nov 28th, 2005
 

Assemblies are the building Blocks of ,net frame work applications and r fundamenatal unit used in .net.it consist of manifest.

  Was this answer useful?  Yes

Raja

  • Dec 16th, 2005
 

Hi All,

I found that there are numerous posts for Assemblies but none for giving out the difference between Panel and a Group Box. Although a Panel as well as the groupbox are almost the same there are minute differences.

In group box you can enter text while you cant do that in Panel.

In Panel you have got a built in support for scrollbars which is not available in case of group box.

Hope this information is useful....Happy Programming !!!

Regards,

Raja

thenibala

  • Mar 24th, 2006
 

There is lots of difference between ASP and ASP.NET

Asp Vs ASP.Net some are :

ASP is Procedure oreinted Language where as ASP.Net Supports OOPS.

UI and Code behind is very well defined and Isolated.

UI can supports multiples of Code Behind languages (VB, C# etc.,)

Late binding is present in the ASP.Net

Muruganandham C

  Was this answer useful?  Yes

Mukesh Sonone

  • Jul 18th, 2007
 

Assemblies:
Assemblies is the small execution engine, which consist of Manifest &
Module.
manifest contains the assembly version, metadata, example, size,........

Panel & Group Box:
1)
Panel don't have the caption or we can say text on that..
2) Panel
have the both horizontal & vertical Scroll Bars, while Group box don't have Scroll bars at all.

ASP.Net & ASP:
1) Both ASP & ASP.Net have different execution engine, so we can execute
ASP & ASP.NET pages at a time
2) ASP is object based &
ASP.Net is object oriented
3) ASP do not support the disconnected architecture while ASP.NET supports
4)
Here in ASP we have record set & in ASP.Net we have data reader..


Assemblies?
Assemblies contains code that the common language runtime executes,
An assembly is the unit at which permissions are requested and granted
It also stores the information about itself called metadata and includes name and verison of the assembly etc.,
Assemblies can be static or dynamic.

Difference between Panel and GroupBox?

Panel and GroupBox is used for grouping of controls.
however, only the Panel control can have scroll bars, and only the GroupBox control displays a caption.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions