Categories
Sql Server

How To Encrypt Stored Procedure In SQL Server

How To Encrypt Stored Procedure In SQL Server Hi,Guys in this tutorial i will explain you how to create a Encrypted Stored Procedure in SQL Server. Sometime we have a business logics and we want to hide the logic implementation then the schema of the stored procedure can be encrypted. Code:- CREATE PROCEDURE SP_EncryptedStoredPROC WITH […]

Categories
Asp, Asp.net

DataList Paging in ASP.NET

DataList Paging in ASP.NET In this tutorial i will explain you how to do paging on ASP.NET DATALIST component.Here i am using SQL Server as Backend.By Default Paging is not a part of DataList.You have to Implement your own function for it.When we want to add a paging feature to a DataList or Repeater control, […]

Categories
Asp, Asp.net

How To Bind Data To Textbox and Label In ASP.NET

How To Bind Data To Textbox and Label In ASP.NET In this post i will explain you How To Bind Data To Textbox and Label In ASP.NET.Here i am using SQL Server as backend from where i am fetching data and then binding that data into Textbox and Label. Design View:- <%@ Page Language="C#" AutoEventWireup="true" […]

Categories
Technology - Tips

Upload Files To An FTP Via a Batch Script

Upload Files To An FTP Via a Batch Script In this tutorial i will explain you how to Upload Files To An FTP Via a Batch Script.In this demonstration i am using .txt files to upload to FTP through a Batch file. First of all create a folder and on that create some dummy .txt files.Now move to […]