Awp Viva
Awp Viva
Hyperlink control does not have the Click and Command events; whereas the LinkButton
control has these events, which can be handled in the code-behind file of the Web page.
Navigation controls help us to navigate in a Web application easily. These controls store all the
links in a hierarchical or drop-down structure; thereby facilitating easy navigation in a Web
application
.
SiteMapPath
Menu
TreeView
Client-side validations work at the client end with the help of scripting languages such as
JavaScript or jQuery and VBScript. On the other hand, server-side validations work at the
server end with the help of programming languages like C#, VB, F# etc. Server validations
work when you submit or send data to the server.
RequiredFieldValidator: This validator is used when you don’t want the container to stay
empty. It examines whether the control possesses any value or not.
RangeValidator: It finds out whether the value in validated control falls the specific range or
not. CompareValidator: It tests if the value in controls matches certain specific values or not.
RegularExpressionValidator: Tests if the particular value matches an explicit regular expression
or not.
CustomValidator: Useful for defining User Defined validation.
Summary Validation: Shows summary of all existing validation errors over an ASP.NET page.
Postback is a request which is sent from a client to the server from the same page user is
working with. There is an HTTP POST request mechanism in ASP.NET. It posts a complete
page back to the server to refresh the whole page.
Q9. What is the difference between ASP.NET Web forms and ASP.NET MVC?
ASP.NET Web forms uses the page controller approach for rendering layout. In this approach,
every page has its controller.
On the other hand, ASP.NET MVC uses the Front Controller approach. In this approach, there
is a common controller for all pages.
AJAX stands for Asynchronous JavaScript And XML. In a nutshell, it is the use of the
XMLHttpRequest object to communicate with servers. It can send and receive information
in various formats, including JSON, XML, HTML, and text files.
A cookie is a small bit of text that accompanies requests and pages as they go between the
Web server and browser. The cookie contains information the Web application can read
whenever the user visits the site.
A master page is a defined set of formatting that is applied to the sections of your
document-style report. In a template, you can specify a master page that includes a header
element, a footer element, and layout properties, such as orientation and borders.
ASP.NET themes are a collection of properties that define the appearance of pages and
controls in your Web site. A theme can include skin files, which define property settings for
ASP.NET Web server controls, and can also include cascading style sheet files (. css files) and
graphics.