Top questions

Post

New Post


Find by name:

Question Answer
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. Passport service 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
For separating server-side code from client-side code on a ASP.NET page, what programming model should you use? Separation model Code-Behind model In-Line model ClientServer model ANSWER: Code-Behind model
From a dataview dv who has a column “EmpNo” from employee table, how will u bind a textbox Options - Textbox.databinding.add(“Text”,dv,”EmpNo”); - Textbox.databinding.adddv,”EmpNo”); - Textbox.databinding.add(EmpNo”); - None of the above CORRECT ANSWER : Textbox.databinding.add(“Text”,dv,”EmpNo”);



Back to HomePage