0% found this document useful (0 votes)
18 views

2 mark wt

Uploaded by

Jasvan Sundar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

2 mark wt

Uploaded by

Jasvan Sundar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

1.

logical operator- • and,• or,• not,• xor

2.datatype in vb script-• vb script has only one datatype called varient • a varient is a special kind of
datatype that contains differen kind of information• a varient can contain numeric or string and it act
based on the type

3. Html-The HyperText Markup Language or HTML is the standard markup language for documents
designed to be displayed in a web browser.

4. Javascript- javascript is a programming language that is one of the core technologies of the World
Wide Web, alongside HTML and CSS.

5. vb variable-• a variable is a fundamental part of any programming language •. A variable function


hold a value which a programmer assign and it can be dynamic

6. Vb operator- •arithmetic •assingnment•relational•logical •concatenation

7. Date function-

dim todayDate

todayDate = Date

8.built in object-JavaScript also has four built-in objects: Array, Date, Math, and String.

9. control structure- •Sequential: default mode. ... •Selection: used for decisions, branching -- choosing
between 2 or more alternative paths. ... •Repetition: used for looping, i.e. repeating a piece of code
multiple times in a row.

10. Functions- JavaScript function is a group of code designed to perform a particular task. JavaScript
function can be called anywhere in your program.

11. Event handling- Event Handling is the mechanism that controls the event and decides what should
happen if an event occurs.

12.document object model- The Document Object Model (DOM) is a programming interface for web
documents. It represents the page so that programs can change the document structure, style, and
content.

13. Web server control- Web server controls include not only form controls such as buttons and text
boxes, but also special-purpose controls such as a calendar, menus, and a tree view control.

14. RadioButtonList Control is same as DropDownList but it displays a list of radio buttons that can be
arranged either horizontally or vertically.CheckBoxList is a web control that can be used to collate the
items that can be checked, thus giving the user the ability to select multiple items simultaneously.

15. Oledb connection-An OleDbConnection object represents a unique connection to a data source.
With a client/server database system, it is equivalent to a network connection to the server.

16. Request methods-The two most common HTTP methods are GET and POST.

17. ASP.NET First Program Example: Hello World


First, choose the project type as ‘Empty’. This will ensure that we start with a basic application which is
simple to understand.

We choose the option “web Forms”. This adds the basic folders. …

Finally, we click the ‘OK’ button to allow Visual Studio to create our application.

18 . Language structure-If no language is specified in a page, the language defaults to Visual Basic.

19.request object & response object- the request object is going to hold information about the current
user request, that is the client browser requesting a webpage from your server. The response object
contains the response data that will be sent back to the user.

You might also like