Archive for 2016

Using Ajax Control Toolkit in ASP.NET

Download Ajax Control Tool Kit from below link Ajax control toolkit download link Extract The file then Go To Visual Studio Open Tool Box Right Click On The Existing Tab And Click On Add New Tab Name the tab Right click on the newly tab click on.
Wednesday, 14 December 2016
Posted by Sudhir Chekuri
Tag :

ASP.NET Controls

.
Wednesday, 7 December 2016
Posted by Sudhir Chekuri
Tag :

ASP.NET Master Pages

Master pages are used to create common layout for multiple websites. Master pages will have .master as page extension and we can see output of master page directly. Multiple web forms(.aspx pages) can be created using single master page. All these.
Sunday, 4 December 2016
Posted by Sudhir Chekuri
Tag :

Introduction to ASP.NET

ASP.NET is a technology under .NET Framework which is used to create web sites. ASP stands for Active Server Pages. HTML, CSS and javascript are used as basic building blocks for developing websites using ASP.NET. C#.NET will act as a code behind.
Monday, 28 November 2016
Posted by Sudhir Chekuri
Tag :

SQL Injection

Hacking database by entering input data which maninpulates sql queries is known as sql injection. Example: Expected: select * from tbl_data where name='admin' and pwd='password' Hacked: select * from tbl_data where name='admin' and pwd=' or 'a'='a' With.
Sunday, 27 November 2016
Posted by Sudhir Chekuri

C#.NET ref and out parameters with example

ref stands for reference and out stands for output. ref parameter variable should be initialized before we call the method. That value will be used a as reference value in the method. out parameter variable initialization is not required but it should.
Tuesday, 31 May 2016
Posted by Sudhir Chekuri

Stored Procedures in ADO.NET

// 1. create a command object identifying         // the stored procedure         SqlCommand cmd  = new SqlCommand(               .
Saturday, 12 March 2016
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Delete

//Disconnected architecture - delete         //Delete product         private void BtnDeleteProduct_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Update

//Disconnected - update         //Update product name based on the product name under a category         private void BtnUpdateProduct_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Insert

//Disconnected Insert         //Adding product         private void BtnAddProduct_Click(object sender, EventArgs e)         { SqlConnection.
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Select

//Disconnected - Select         //Populate the datagridview with registered users information         public void GetData()         { SqlConnection.
Posted by Sudhir Chekuri
Tag :

DataSet

DataSet is used in disconnected architecture to store database tables. It can hold multiple tables in it. It is used to store information retrieved by DataAdapter in disconnected architecture. Data adapter will execute the command and fill the dataset.
Posted by Sudhir Chekuri
Tag :

DataAdapter

DataAdapter is used to disconnected architecture to execute all the commands. It is capable of opening the connection to the database server, executing the command, Storing data in DataSet and closing the connection. .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Delete

//Connected architecture - delete         //Delete Category         private void BtnDeleteCategory_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Update

//Connected Architecture - update         //Update Category         private void BtnUpdateCategory_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Insert and Select

SQL Command to create SQL table CREATE TABLE [dbo].[Tbl_Data](        [Id] [int] IDENTITY(1,1) NOT NULL,        [UserName] [varchar](50) NULL,       .
Posted by Sudhir Chekuri
Tag :

Followers

Total Pageviews

Powered by Blogger.

- Copyright © 2013 DevStudent - Metrominimalist - Powered by Blogger - Designed by Johanes Djogan -