Showing posts with label dot net. Show all posts
Showing posts with label dot net. Show all posts

Business integration Development studio components in Asp.net

When a new Analysis Services project opens, Solution Explorer and the Properties window are visible and docked. The Server Explorer, Toolbox, Task List, and Error List windows are hidden and docked. Hidden windows appear on the left, bottom, or right side of the Visual Studio development environment, depending on where they are docked. To view a hidden window, position your pointer within the hidden window tab and it will reappear. To hide or unhide a window, click the Auto Hide button. If you accidentally close an open window, you can reopen it from the View menu.

Then, click the Auto Hide button. If you accidentally close an open window, you can reopen it from the View menu.
The following table describes the windows that are visible when you open a new Analysis Services project.
Solution Explorer
Contains a tree view of the objects in the Analysis Services project. A solution can contain multiple projects; each project contains one or more items. A project contains folders for each type of object that can be defined for the project, based on information that is contained in the template from which the project was created. An Analysis Services project contains the following folders: Data Sources, Data Source Views, Cubes, Dimensions, Mining Structures, Roles, Assemblies, and Miscellaneous.
Properties
Contains the properties collection for a selected object.
  

Creating an Analysis Services Project

In the following task, you open Business Intelligence Development Studio and create a new Microsoft SQL Server 2005 Analysis Services (SSAS) project named Analysis Services Tutorial, based on the Analysis Services Project template. A project is a collection of related objects. Projects exist within a solution, which includes one or more projects. For more information, see Defining an Analysis Services Project.
  1. Click Start, point to All Programs, point to Microsoft SQL Server 2005, and then click SQL Server Business Intelligence Development Studio.
The Microsoft Visual Studio 2005 development environment opens.
  1. Close the Start Page tab. On the File menu of Visual Studio, point to New, and then click Project.
You can use Business Int
The Microsoft Visual Studio 2005 development environment opens.
  1. Close the Start Page tab. On the File menu of Visual Studio, point to New, and then click Project.
You can use Business Intelligence Development Studio to create several different types of projects, either from templates that are installed with Visual Studio or from templates that you define. The templates that are installed depend on which Microsoft SQL Server 2005 components you install.
  1. In the New Project dialog box, select Business Intelligence Projects in the Project types pane, and then select Analysis Services Project in the Templates pane.
Notice the default project name, the default solution name, and the default project location in the bottom of the dialog box. By default, a new directory will be created for the solution.

  1. Change the project name to Analysis Services Tutorial, which also changes the solution name, and then click OK.
  2. You have successfully created the Analysis Services Tutorial project, based on the Analysis Services Project template, within a new solution that is also named Analysis Services Tutorial.

DOT NET TECHNOLOGY IMP Question in GTU

UNIT - 1
1.     What is .net framework?
2.     Explain the basic architecture of .net framework.
3.     Explain CLR.
4.     Explain the managed code and unmanaged code.
5.     What is MSIL code.
6.     Explain the CLS and CTS .
7.     Explain the value type and reference type data type.
  1. What is metadata?  Mention its uses in .NET.
9.     What is Assembly? Explain the types of assembly.
10.  Explain the garbage collection.
11.  Explain the versioning and side by side execution.
12.  What is DLL Hell problem? How to solve this problem?

UNIT - 3
1.     Explain the basic data type of vb .net.
2.     Explain the operators of vb .net.
3.     What is Array? How to declare and initialize the array.
4.     What is dynamic array? Explain with example.
5.      Explain the ReDim and Preserve Keyword.
6.     What is Enumerations? What is the use of it? Explain with example.
7.     What is string? Explain the different function of string.
8.     Explain the selection statement with example. ( if statement , select statement)
9.     Explain Iteration statement with example. ( while, for , do while )
10.  Explain jump statement with example. ( Goto , Exit, continue , Break)
11.  What is namespace?
12.  What is class? How to create a class and object.
13.  What is inheritance? Explain with example.



14.  What is error handling?
15.  Explain try..catch..finally statement with example.
16.  Explain Throw statement with example.
17.  Explain the type conversion with example.
18.  What is a thread? Explain multithreading with example.


UNIT -4

1.     What is overloading?
2.     Explain method overloading with example.
3.     Explain operator overloading with example.
4.     What is a constructor? Explain the different type of constructor.
5.     What is inheritance? Explain diff type of inheritance.
6.     Explain diff access modifiers.
7.     Explain the different scope of element.
8.     Explain dispose and finalization method with example.
9.     Explain structures exception handling and unstructured handling.
10.  Explain on error resume next with example.
11.   Explain on error statement with example.



ASP.Net introducation

ASP.NET is a development framework for building web pages and web sites with HTML, CSS, JavaScript and server scripting  and also for web services.

Microsoft, "ASP.NET is a technology for building powerful, dynamic Web applications and is part of the .NET Framework".

.NET is language independent, which means you can use any .NET supported language to make .NET applications. The most common languages for writing ASP.NET applications are C# and VB.NET.

Classic ASP - Active Server Pages

Active Server Pages (ASP), also known as Classic ASP, was introduced in 1998 as Microsoft's first server side scripting engine.

ASP is a technology that enables scripts in web pages to be executed by an Internet server. ASP pages have the file extension .asp, and are normally written in VBScript.

What is an ASP File?
An ASP file is just the same as an HTML file
An ASP file can contain text, HTML, XML, and scripts
Scripts in an ASP file are executed on the server
An ASP file has the file extension ".asp“


How Does ASP Differ from HTML?
When a browser requests an HTML file, the server returns the file

When a browser requests an ASP file, IIS (Internet Information Service) passes the request to the ASP engine. The ASP engine reads the ASP file, line by line, and executes the scripts in the file. Finally, the ASP file is returned to the browser as plain HTML