Skip to main content

Posts

Here I am Explaining all Example of Gridview with various Events What is Gridview ?   Displays the values of a data source in a table where each column represents a field and each row represents a record. The GridView control enables you to select, sort, and edit these items. Click here to read more................ Gridview inside gridview in Asp.net I am going to show you a simple example of a gridview control to show records of parent and child . Means when user clicks on parent records it should all child records regarding that parent record. Here I have taken two tables Click here to read more................   How to assign a dropdownlist box value to textbox in javascript I am going to show you a simple example How to assign a dropdownlist box value to textbox in javascript Click here to read more................  
For Asp.net Beginners: All Gridview Example : Here I am Explaining all Example of Gridview with various Events What is Gridview ?   Displays the values of a data source in a ...
What is a Web Service? Web Services are business logic components, which provide functionality via the Internet using standard protocols such as HTTP. Web Services uses Simple Object Access Protocol (SOAP) in order to expose the business functionality. SOAP defines a standardized format in XML, which can be exchanged between two entities over standard protocols such as HTTP. SOAP is platform independent so the consumer of a Web Service is therefore completely shielded from any implementation details about the platform exposing the Web Service. For the consumer it is simply a black box of send and receives XML over HTTP. So any web service hosted on windows can also be consumed by UNIX and LINUX platform
What is Cookies? Reference from :- http://www.c-sharpcorner.com/uploadfile/annathurai/cookies-in-Asp-Net/ Cookiesis a small piece of information stored on the client machine. This file is located on client machines "C:\Document and Settings\Currently_Login user\Cookie" path.  Its is used to store user preference information like Username, Password,City and PhoneNo etc on client machines. We need to import namespace called  Systen.Web.HttpCookie before we use cookie.   Type of Cookies? Persist Cookie - A cookie has not have expired time Which is called as Persist Cookie Non-Persist Cookie - A cookie has expired time Which is called as Non-Persist Cookie How to create a cookie?   Its really easy to create a cookie in the Asp.Net with help of Response object or HttpCookie   Exp 1 :           HttpCookie userInfo = new HttpCookie ( "userInfo" );         userI...
What is page life cycle in ASP.NET 2.0 ? Refernce from:- http://www.dotnetuncle.com/aspnet/71_page_life_cycle.aspx ASP.NET 2.0 Page Life Cycle - The lifetime of an ASP.NET page is filled with events. A .NET technical interview might begin with this question. A series of processing steps takes place during this page life cycle. Following tasks are performed: 1) Initialization 2) Instantiation of controls 3) Restoration & Maintainance of State 4) Running Event Handlers 5) Rendering of data to the browser The life cycle may be broken down into Stages and Events. The stages reflect the broad spectrum of tasks performed. The following stages take place 1) Page Request - This is the first stage, before the page life cycle starts. Whenever a page is requested, ASP.NET detects whether the page is to be requested, parsed and compiled or whether the page can be cached from the system. 2) Start - In this stage, properties such as Request and Response are set. Its also determin...
What is event bubbling? Server controls like Datagrid, DataList, and Repeater can have other child controls inside them. Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid,datalist, repeater), which passed to the page as “ItemCommand” event. As the child control sendevents to parent it is termed as event bubbling.  Refernce from:- .NET Interview Questions 4 th Edition By Shivprasad Koirala
What is difference between dataset and data reader? Following are some major differences between dataset and data reader:- Data Reader provides forward-only and read-only access to data, while the Dataset object can hold more than one table (in other words more than one row set) from the same data source as well as the relationships between them. Dataset is a disconnected architecture while data reader is connected architecture. Dataset can persist contents while datareader cannot persist contents, they are forward only.  Refernce from:- .NET Interview Questions 4 th Edition By Shivprasad Koirala