Skip to main content

Posts

Showing posts from February 23, 2014
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" );         userInfo[ "UserName" ] = "Annathurai" ;         userInfo[ "
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
Create and Implement 3-Tier Architecture in ASP.Net What is a Layer? A layer is a reusable portion of code that performs a specific function. In the .NET environment, a layer is usually set up as a project that represents this specific function. This specific layer is in charge of working with other layers to perform some specific goal. Let’s briefly look at the latter situation first. Click here to read more................  
Create Simple Web Service in Visual Studio 2008 / 2010 /2012 How to create a simple Web service When creating a New Project, under the language of your choice, select "Web" and then change to .NET Framework 3.5 and you will get the option to create an ASP.NET WEB Service Application. Click here to read more................
What is Globalization and Localization in ASP.Net Before starting, let's get these two terms straight. Globalization is the process of designing the application in such a way that it can be used by users from across the globe (multiple cultures). Localization, on the other hand, is the process of customization to make our application behave as per the current culture and locale. These two things go together.   Click here to read more................  
Store and Retrieve Image in Crystal Reports From SQL Database and Folder Using ASP.Net Saving and displaying images in database tables is a common requirement in ASP.NET projects. There are two ways to store images in a database: Store image URLs in the database as a normal string. Store image as binary data. The purpose of this article is: Show how you to upload and save images directly in a SQL Server database table as binary data and display in Crystal Reports. Show how you to store images in a folder and display in Crystal Reports. Use the following procedure to do this. Click here to read more................
How to Export Crystal Report on Button Click in to PDF, Excel, Word, HTML, Rtf in ASP.NET C#. What Is Crystal Reports? "In simplest terms, Crystal Reports is a report design tool that allows you to create reports capable of retrieving and formatting a result set from a database or other data source. In addition to simply reading data from a data source, Crystal Reports has its own formula language for creating calculations and includes a number of features that can be used to turn raw data into presentation-quality reports, with graphs, charts, running totals, and so on." (David McAmis, Professional Crystal Reports for Visual Studio .NET, 2 nd edition ) We give this option to users to download there on copy of result what they want from search result. Click here to read more................