Post Views: 2,261 How To Read And Write Connection String in Web.Config? Putting Connection string in Web.config file is highly recommended place in ASP.NET web application and SharePoint Applications. It allows you to make connecting strings configurable, so whenever you need to change the connection string, you can direcly change that in web.config file […]
Asp.net
Collection of Articles and Posts on Asp.net, C# and VB.net ,Dotnet Professional must read these Articles and Posts, these also includes some questions mostly ask by interviewer,
MVC Interview Questions and Answers
Post Views: 1,375 Here is some questions and answers on MVC architecture pattern. these MVC Interview Questions and Answers are basic questions on MVC. MVC Questions and Answers What is Model-View-Controller? MVC is a software architecture pattern to develop web applications. MVC represent Model-View-Controller and there are three components. Model– Model MVC represents the application data domain. Applications business logic is written within […]
Adding jQuery UI DatePicker in ASP.Net
Post Views: 962 jQuery DatePicker is very useful component of JQuery, This Calendar control is very lightweight, we can easily use it to Asp.net Web Application.its easy to use and rich features. Here we are providing code to add Jquery Calendar into your web application . Firstly you need to add Javascript file for Jquery, to […]
What are Difference between Server.Transfer() and Response.Redirect()
Post Views: 1,005 What are Difference between Server.Transfer() and Response.Redirect() This is very common question, interviewers mostly ask this question, if you are preparing for interview you must know difference between these two. here is list of differences between Server.Transfer() and Response.Redirect. These are used for transfer/redirect from one page to another page , but here […]
REST (Representational State Transfer) Services in WCF
Post Views: 1,201 REST (Representational State Transfer)Services in WCF: Representational State Transfer (REST ) is architectural style that clients can make requests of services(Endpoints). RES9T is useful to implement one way distributed commutation between the client server architectural styles. URI (Unforce Resource Identifier): End user can interact with resources and resources could be name of […]
Difference between Response.Write() and Response.Output.Write()?
Post Views: 710 Difference between Response.Write() and Response.Output.Write()? Response.write() don’t give formatted output. and Response.Output.Write() allows you to write formatted output.
Refresh ASPx page after time
Post Views: 872 How to get aspx page Automatically refresh after some time To get a page to be refreshed after a particular time at page level of the aspx page we need to specify like this : <meta http-equiv=”refresh” content=”10″ /> The above statement will make a particular page to be refreshed for […]
In WCF which bindings supports the reliable session?
Post Views: 623 In WCF which bindings supports the reliable session? In WCF, following bindings supports the reliable session wsHttpBinding wsDualHttpBinding wsFederationHttpBinding netTcpBinding
Difference between Session vs Cache?
Post Views: 733 Difference between Session vs Cache? Main difference is session is per user, while cache will be for application scoped items. Items available into a session will stay there, until the session ends. Items in the cache can expire (will be removed from cache) after a specified amount of time. we can keep session state external i e state […]
Contract in WCF Service
Post Views: 844 What are contract in WCF Services? Contract defined the service and its operation. It’s the agreement between the client and WCF Service application between there communication. Contract defined that what the WCF service does. Service Contract: Service contract define the operation that service provide for client. Service Contract describes the client –callable […]