Need to practice your ASP.NET Web Forms skills for an upcoming job interview? Try solving these ASP.NET Web Forms interview questions that test knowledge of web controls, managing state, optimizations, and other skills. We’ll provide feedback on your answers, and you can use a hint if you get stuck.
These ASP.NET Web Forms interview questions are examples of real tasks used by employers to screen candidates for web development jobs that require knowledge of ASP.NET and the .NET Framework in order to build robust and scalable web applications.
1. Input Controls
An ASPX page contains the following snippet:
<asp:TextBox ID="Name" runat="server" />
<br />
<input id="Surname" type="text" />
Which of the following statements are true?
(Select all acceptable answers.)
2. State
Which of the following statements are true for managing the state between two web calls?
(Select all acceptable answers.)
3. Bundling
Which of these statements are true for bundling in ASP.NET Web Forms?
(Select all acceptable answers.)
4. Redirect
We want to switch a user from page X to page Y. Which of the following statements are true?
(Select all acceptable answers.)