Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
29 views
Dot Net 1
Uploaded by
shinojvsekharan
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save DotNet1 For Later
Download
Save
Save DotNet1 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
29 views
Dot Net 1
Uploaded by
shinojvsekharan
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save DotNet1 For Later
Carousel Previous
Carousel Next
Save
Save DotNet1 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 16
Search
Fullscreen
@ GURU99 = 50+ ASP.NET Interview Questions and Answers (2024) By: Christina Tyler @ Updated February 10, 2024 Here are ASP.NET interview questions and answers for fresher as well as experienced candidates to get their dream job. Table of Contents: ASP.NET Interview Questions and Answers for Freshers 1, What is ASP.Net? It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HTML, Javascript, CSS etc. Its successor of Microsoft Active Server Pages(ASP). Currently there is ASP.NET 4.0, which is used to develop web sites. There are various page extensions provided by Microsoft that are being used for web site development. Eg: aspx, asmx, ascx, ashx, cs, vb, html, XML etc. 2. What’s the use of Response.Output.Write()? We can write formatted output using Response.Output .Write(). 3, In which event of page cycle is the ViewState available? After the Init() and before the page_Load().EXPLORE MORE Learn Java Programming with Beginners Tutorial Linux Tutorial for Beginners: Introduction 4. What is the difference between Server.Transfer and Response.Redirect? In Server.Transfer page processing transfers from one page to the other page without making a round-trip back to the client’s browser. This provides a faster response with a little less overhead on the server. The clients url history list or current url Server does not update in case of Server.Transfer. Response.Redirect is used to redirect the user’s browser to another page or site. It performs trip back to the client where the client’s browser is redirected to the new page. The user’s browser history list is updated to reflect the new address. 5. Fram which base class all Web Forms are inherited? Page class. 6. What are the different validators in ASP.NET? The following are different validators in ASP.NET 1. Required field Validator 2. Range Validator 3. Compare Validator 4. Custom Validator 5. Regular expression Validator 6. Summary Validator7. Which validator control you use if you need to make sure the values in two different controls matched? Compare Validator control. 8. What is ViewState? ViewState is used to retain the state of server-side objects between page post backs. 9, Where the viewstate is stored after the page postback? ViewState is stored in a hidden field on the page at client side. ViewState is transported to the client and back to the server, and is not stored on the server or any other external source. ASP.NET Interview Questions and Answers for 3 Years Experience 10. How long the items in ViewState exists? They exist for the life of the current page. 11. What are the different Session state management options available in ASP.NET? 1. In-Process 2. Out-of-Process. In-Process stores the session in memory on the web server. Out-of-Process Session state management stores data in an external server. The external server may be either a SQL Server or a State Server. All objects stored in session are required to be serializable for Out-of-Process state management.12. How you can add an event handler? Using the Attributes property of server side control. eg. btnSubmit Attributes .Add("onMouseOver", "JavascriptCode();") 13. What is caching? Caching is a technique used to increase performance by keeping frequently accessed data or files in memory. The request for a cached file/data will be accessed from cache instead of actual location of that file. 14. What are the different types of caching? ASP.NET has 3 kinds of caching: 1. Output Caching, 2. Fragment Caching, 3. Data Caching. 15. Which type if caching will be used if we want to cache the portion of a page instead of whole page? Fragment Caching: It caches the portion of the page generated by the request. For that, we can create user controls with the below code:
16. List the events in page life cycle. 1) Page_Prelnit 2) Page_Init 3) Page_InitComplete 4) Page_PreLoad 5) Page_Load 6) Page_LoadComplete 7) Page_PreRender 8) Render 17. Can we have a web application running without web.Config file? Yes 18. Is it possible to create web application with both webforms and mvc? Yes. We have to include below mvc assembly references in the web forms application to create hybrid application. System.Web.Mve System.Web.Razor System. ComponentModel . DataAnnota 19. Can we add code files of different languages in App_Code folder? No. The code files must be in same language to be kept in App_code folder. 20. What is Protected Configuration?Itis a feature used to secure connection string information. 21. Write code to send e-mail from an ASP.NET application? © mailMess = new MailMessage (); rom betgmail.com"; :To = “xyz@gmail.com"; -Subject = "Test email"; Body = "Hi This is a test mail."; -SmtpServer = "localhost"; il.Send (mailMess); MailMessage and SmtpMail are classes defined System.Web.Mail namespace. 22, How can we prevent browser from caching an ASPX page? We can SetNoStore on HttpCachePolicy object exposed by the Response object’s Cache property: Cache. SetNoStore (); se.Write (DateTime.Now.ToLongTimeString ());23. What is the good practice to implement validations in aspx page? Client-side validation is the best way to validate data of a web page. It reduces the network traffic and saves server resources. 24. What are the event handlers that we can have in Global.asax file? Application Events: Application_Start , Application_End, Application_AcquireRequestState, Application_AuthenticateRequest, Application_AuthorizeRequest, Application_BeginRequest, Application_Disposed, Application_EndRequest, Application_Error, Application_PostRequestHandlerExecute, Application_PreRequestHandlerExecute,Application_PreSendRequestContent, Application_PreSendRequestHeaders, Application_ReleaseRequestState, Application_ResolveRequestCache, Application_UpdateRequestCache Session Events: Session_Start,Session_End 25. Which protocol is used to call a Web service? HTTP Protocol ASP.NET Interview Questions and Answers for 5 Years Experience 26. Can we have multiple web config files for an asp.net application? Yes.27. What is the difference between web config and machine config? Web config file is specific to a web application where as machine config is specific to a machine or server. There can be multiple web config files into an application where as we can have only one machine config file on a server. 28. Explain role based security? Role Based Security used to implement security based on roles assigned to user groups in the organization. Then we can allow or deny users based on their role in the organization. Windows defines several built-in groups, including Administrators, Users, and Guests.
< authorization > ain_Name\Administrators" / >< !-- Allow y> < !-- Deny anyone < /authorization > 29. What is Cross Page Posting? When we click submit button on a web page, the page post the data to the same page. The technique in which we post the data to different pages is called CrossPage posting. This can be achieved by setting POSTBACKURL property of the button that causes the postback. Findcontrol method of PreviousPage can be used to get the posted values on the page to which the page has been posted. 30. How can we apply Themes to an asp.net application? We can specify the theme in web.config file. Below is the code example to apply theme:
31. What is RedirectPermanent in ASP.Net? RedirectPermanent Performs a permanent redirection from the requested URL to the specified URL. Once the redirection is done, it also returns 301 Moved Permanently responses. 32. What is MVC? MVC is a framework used to create web applications. The web application base builds on Model-View-Controller pattern which separates the application logic from UI, and the input and events from the user will be controlled by the Controller. 33. Explain the working of passport authentication. First of all it checks passport authentication cookie. If the cookie is not available then the application redirects the user to Passport Sign on page. Passportservice authenticates the user details on sign on page and if valid then stores the authenticated cookie on client machine and then redirect the user to requested page 34. What are the advantages of Passport authentication? All the websites can be accessed using single login credentials. So no need to remember login credentials for each web site. Users can maintain his/ her information in a single location. 35. What are the asp.net Security Controls?
: Provides a standard login capability that allows the users to enter their credentials
: Allows you to display the name of the logged-in user
: Displays whether the user is authenticated or not
: Provides various login views depending on the selected template
: email the users their lost password ASP.NET Interview Questions and Answers for 10 Years Experience36. How do you register JavaScript for webcontrols ? We can register javascript for controls using
Attribtues.Add(scriptname,scripttext) method. 37. In which event are the controls fully loaded? Page load event. 38. what is boxing and unboxing? Boxing is assigning a value type to reference type variable. Unboxing is reverse of boxing ie. Assigning reference type variable to value type variable. 39. Differentiate strong typing and weak typing In strong typing, the data types of variable are checked at compile time. On the other hand, in case of weak typing the variable data types are checked at runtime. In case of strong typing, there is no chance of compilation error. Scripts use weak typing and hence issues arises at runtime. 40. How we can force all the validation controls to run? The Page.Validate() method is used to force all the validation controls to run and to perform validation. 41. List all templates of the Repeater control. ItemTemplate AlternatingltemTemplate SeparatorTemplate * HeaderTemplate FooterTemplate42. List the major built-in objects in ASP.NET? Application Request Response ° Server * Session * Context *° Trace 43. What is the appSettings Section in the web.config file? The appSettings block in web config file sets the user-defined values for the whole application. For example, in the following code snippet, the specified ConnectionString section is used throughout the project for database connection:
ettings>
44, Which data type does the RangeValidator control support? The data types supported by the RangeValidator control are Integer, Double, String, Currency, and Date. 45. What is the difference between an HtmllnputCheckBox control and an HtmllnputRadioButton control? In HtmlinputCheckBoxcontrol, multiple item selection is possible whereas in HtmlinputRadioButton controls, we can select only single item from the group of items.46. Which namespaces are necessary to create a localized application? System.Globalization System.Resources 47. What are the different types of cookies in ASP.NET? Session Cookie - Resides on the client machine for a single session until the user does not log out. Persistent Cookie - Resides on a user’s machine for a period specified for its expiry, such as 10 days, one month, and never. 48. What is the file extension of web service? Web services have file extension .asmx.. 49. What are the components of ADO.NET? The components of ADO.Net are Dataset, Data Reader, Data Adaptor, Command, connection. 50. What is the difference between ExecuteScalar and ExecuteNonQuery? ExecuteScalar returns output value where as ExecuteNonQuery does not return any value but the number of rows affected by the query. ExecuteScalar used for fetching a single value and ExecuteNonQuery used to execute Insert and Update statements.> 1) Select the “ 2) Instructions methodtogive ff Web For Quiz formatted output* ¥ for + This -~ Mock o Test has 15, Questions eta » CO Response.Outp ° ut.Writed) a These interview questions will also help in your viva(orals) OOOO You Might Like: . ASP.NET Application & PAGE Life Cycle ASP.NET Web Forms Tutorial: User Controls Examples Insert, Update, Delete: ASP.NET Database Connection Tutorial How to Host a Website on IIS: Setup & Deploy Web Application Asp.Net Page Level Tracing, Debugging, Error Handling [Example] UNIT TESTING in Asp.Net: Complete Tutorial ASP.NET Tutorial for Beginners: Learn .NET Basics in 3 Days What is ASP.NET? and it’s ARCHITECTURE Prev Reporta Bug NextGuru99's Headquarters 4023 Kennett Pike #50286, Wilmington, Delaware, United States About About Us Advertise with Us Write For Us Contact Us Career Suggestion SAP Career Suggestion Tool Software Testing as a Career Interesting eBook Blog Quiz SAP eBook Privacy ManagerEnglish pyright - Guru99 2024 Privacy rouey | Affiliate Disclaimer | ToS | Editorial Policy
You might also like
ASP Interview Questions and Answers
PDF
No ratings yet
ASP Interview Questions and Answers
41 pages
50 ASP - Net Interview Questions & Answers
PDF
No ratings yet
50 ASP - Net Interview Questions & Answers
18 pages
Interview Question PDF
PDF
No ratings yet
Interview Question PDF
15 pages
Answers
PDF
No ratings yet
Answers
18 pages
IQ
PDF
No ratings yet
IQ
14 pages
1) Page - Preinit 2) Page - Init 3) Page - Initcomplete 4) Page - Preload 5) Page - Load 6) Control Events 7) Page - Loadcomplete 8) Page - Prerender
PDF
No ratings yet
1) Page - Preinit 2) Page - Init 3) Page - Initcomplete 4) Page - Preload 5) Page - Load 6) Control Events 7) Page - Loadcomplete 8) Page - Prerender
8 pages
ASP by Akatsuki
PDF
No ratings yet
ASP by Akatsuki
44 pages
Asp_DotNet
PDF
No ratings yet
Asp_DotNet
12 pages
ASP.NET Interview Questions
PDF
No ratings yet
ASP.NET Interview Questions
27 pages
Ead MCQS
PDF
No ratings yet
Ead MCQS
25 pages
Questions
PDF
No ratings yet
Questions
10 pages
Questions Simple
PDF
No ratings yet
Questions Simple
1 page
The Page Loading Process
PDF
No ratings yet
The Page Loading Process
6 pages
Prepered .Net New
PDF
No ratings yet
Prepered .Net New
9 pages
ASP.net Short Answers -1 to 37
PDF
No ratings yet
ASP.net Short Answers -1 to 37
8 pages
Describe The Role of Inetinfo - Exe, Aspnet - Isapi - DLL Andaspnet - WP - Exe in The Page Loading Process
PDF
No ratings yet
Describe The Role of Inetinfo - Exe, Aspnet - Isapi - DLL Andaspnet - WP - Exe in The Page Loading Process
5 pages
Interview Question
PDF
No ratings yet
Interview Question
6 pages
Ques
PDF
No ratings yet
Ques
13 pages
1 mark asp.net question
PDF
No ratings yet
1 mark asp.net question
15 pages
Naukri
PDF
No ratings yet
Naukri
10 pages
Interview Questions ASP
PDF
No ratings yet
Interview Questions ASP
127 pages
ASPNEW Questions
PDF
No ratings yet
ASPNEW Questions
19 pages
Basic to advance ASP.Net Framework
PDF
No ratings yet
Basic to advance ASP.Net Framework
50 pages
General ASP NET Questions - 16
PDF
100% (1)
General ASP NET Questions - 16
16 pages
asp.net
PDF
No ratings yet
asp.net
92 pages
U3 QB Solution
PDF
No ratings yet
U3 QB Solution
18 pages
Int Questions
PDF
100% (1)
Int Questions
5 pages
All Interview Quest
PDF
No ratings yet
All Interview Quest
99 pages
5_ASP.NET Faq'S
PDF
No ratings yet
5_ASP.NET Faq'S
21 pages
Questions
PDF
40% (5)
Questions
34 pages
Trac Nghiem Web
PDF
No ratings yet
Trac Nghiem Web
27 pages
2018 Latest Dot Net Interview Questions and Answers PDF
PDF
0% (1)
2018 Latest Dot Net Interview Questions and Answers PDF
13 pages
ASP MCQ Part 1
PDF
67% (3)
ASP MCQ Part 1
5 pages
Internet Information Services (IIS) Is Created by Microsoft To Provide Internet-Based Services To
PDF
No ratings yet
Internet Information Services (IIS) Is Created by Microsoft To Provide Internet-Based Services To
21 pages
WWW Careerride Com
PDF
No ratings yet
WWW Careerride Com
17 pages
Asp Test1
PDF
No ratings yet
Asp Test1
7 pages
WAD ANS
PDF
No ratings yet
WAD ANS
61 pages
C# Interview Questions For 3-5 Years Experienced
PDF
No ratings yet
C# Interview Questions For 3-5 Years Experienced
62 pages
DotNet Interview Questions
PDF
No ratings yet
DotNet Interview Questions
2 pages
Community Rocks: Custom Controls
PDF
No ratings yet
Community Rocks: Custom Controls
25 pages
50 ASP - NET Interview Questions and Answers (PDF) in 2021
PDF
No ratings yet
50 ASP - NET Interview Questions and Answers (PDF) in 2021
14 pages
Asp Net Interview Questions
PDF
No ratings yet
Asp Net Interview Questions
14 pages
Interview Questions ASP.NET Web Forms
PDF
No ratings yet
Interview Questions ASP.NET Web Forms
15 pages
Wip 4
PDF
No ratings yet
Wip 4
1 page
Question Answer
PDF
No ratings yet
Question Answer
10 pages
Ans:There Are Several Ways To Do So. If You Are Using A Dataset, You Can
PDF
No ratings yet
Ans:There Are Several Ways To Do So. If You Are Using A Dataset, You Can
21 pages
MVC Chinmaya1 2
PDF
No ratings yet
MVC Chinmaya1 2
8 pages
Aspdotnet Objectivetype
PDF
No ratings yet
Aspdotnet Objectivetype
28 pages
For IT and Programmers: Web - Config
PDF
No ratings yet
For IT and Programmers: Web - Config
5 pages
Awp Viva
PDF
No ratings yet
Awp Viva
3 pages
Quiz
PDF
100% (1)
Quiz
9 pages
Pynux Soft Solutions
PDF
No ratings yet
Pynux Soft Solutions
1 page
Interview Questions
PDF
No ratings yet
Interview Questions
18 pages
Answer
PDF
No ratings yet
Answer
10 pages
New
PDF
No ratings yet
New
15 pages
ASPinterview
PDF
No ratings yet
ASPinterview
13 pages
1) What Is The Difference Between Login Controls and Forms Authentication?
PDF
No ratings yet
1) What Is The Difference Between Login Controls and Forms Authentication?
15 pages