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 >

    < allow roles="Domain_Name\Administrators" / >  
    < !-- Allow Administrators in domain. -- >
    < deny users="*"  / >           
  < !-- Deny anyone else. -- >
 < /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 Cross Page 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:


<configuration> 
<system.web> 
<pages theme="Windows7" /> 
</system.web> 
</configuration>



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. 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

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

36: 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
·         FooterTemplate

42. 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:


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 HtmlInputCheckBox control and an HtmlInputRadioButton 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. ExecuteScalar used for fetching a single value and ExecuteNonQuery used to execute Insert and Update statements.

For more questions click here

0 comments:

Post a Comment

 
Top