Skip to content

Instantly share code, notes, and snippets.

View gopigujjula's full-sized avatar

Gopikrishna Reddy Gujjula gopigujjula

View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace UsingTest
{
public class Program
{
@gopigujjula
gopigujjula / foreachtest
Created June 3, 2015 13:15
foreach loop test in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ForeachTest
{
public class Program
{
static void Main(string[] args)
@gopigujjula
gopigujjula / JQueryValidation
Last active August 29, 2015 14:06
JQuery Validations
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Validations.aspx.cs" Inherits="Validations" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<title></title>
<head id="Head1" runat="server">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<style type="text/css">
.redcolor
@gopigujjula
gopigujjula / CsvToDataTable
Created April 25, 2013 09:56
Reading data from the Csv file and create the DataTable in C#
using System;
using System.Text;
using System.Data;
using System.IO;
namespace ReadData
{
class DataConvert
{
static void Main(string[] args)
@gopigujjula
gopigujjula / DataTableToCsv
Last active January 28, 2023 21:02
Conversion from DataTable to Csv file in C#.
using System;
using System.Text;
using System.Data;
using System.IO;
namespace Conversion
{
class DataConvert
{
static void Main(string[] args)
@gopigujjula
gopigujjula / ExcelToDataTable
Created April 19, 2013 10:42
Loading Excel sheet to DataTable using Ole DB jet engine in C#
using System;
using System.Data;
using System.Data.OleDb;
namespace ExcelToDataTable
{
class LoadExcel
{
static void Main(string[] args)
{
@gopigujjula
gopigujjula / XMLGeneration
Created April 18, 2013 13:34
XML generation using XMLDocument
using System.Xml;
using System;
namespace SampleXmlTest
{
public class XmlClass
{
static void Main(string[] args)
{
try
@gopigujjula
gopigujjula / DataRowState
Created April 18, 2013 13:18
DataRowState
using System;
using System.Data;
namespace DataTableRowState
{
public class BooksList
{
public static void Main(string[] args)
{
//This is the Datatable which contains book records.
@gopigujjula
gopigujjula / SwapIntegers
Created April 18, 2013 13:07
Swapping two integer values in different ways.
using System;
namespace Swapping
{
class Swap
{
static void Main()
{
Console.WriteLine("Swapping Two Integers using different methods.\n");
Console.WriteLine("Using Temporary variable.");
@gopigujjula
gopigujjula / FTPFileCopy
Created April 18, 2013 13:03
File copying using FTP
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
namespace FtpFileCopy
{
public class FtpFileUpload
{