Blue Theme Orange Theme Green Theme Red Theme
 
Nevron Gauge for SharePoint
Home | Forums | ASP.NET 2.0 Tutorials | Web Services | How Do I...? | Class Browser | WPF Quick Starts | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
Search :       Advanced Search »
Home » Blogs Home » Blog Detail

Generate Sequence Number and save it to a file in Asp.net

 by Satyapriya Nayak on Feb 01, 2012

In this blog we will know how to generate Sequence Number and save it to a file in asp.net.
Download Files: Generate id.rar
Comments: 0 Views: 525 Printable Version 

In this blog we will know how to generate Sequence Number and save it to a file in asp.net.

 

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Generate_id._Default" %>

 

<!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" >

<head runat="server">

    <title>Untitled Page</title>

</head>

<body>

    <form id="form1" runat="server">

    <div>

   

    </div>

    <asp:Button ID="generateid" runat="server" Text="Generate Id"

        onclick="generateid_Click" /><br />

    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

    </form>

</body>

</html>

 

 

 

using System;

using System.Collections;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

using System.IO;

namespace Generate_id

{

    public partial class _Default : System.Web.UI.Page

    {

       

 

        protected void generateid_Click(object sender, EventArgs e)

        {

            TextBox1.Text = GenerateSequenceNumber().ToString();

        }

        private int GenerateSequenceNumber()

        {

            string s2 = (Server.MapPath("test.txt"));

            FileInfo fiRead = new FileInfo(s2);

            string input = string.Empty;

            int n1 = 1;

            if (fiRead.Exists)

            {

                input = File.ReadAllText(s2);

            }

            if (input != string.Empty)

            {

                n1 = Convert.ToInt32(input);

            }

            File.WriteAllText(s2, (n1 + 1).ToString());

            return n1;

        }

    }

}

 

Thanks

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
 
What do you say about this post? Post a comment here
*Title:
*Comment:
 
Comments not available.
Nevron Gauge for SharePoint
Become a Sponsor

 Blogger's Profile
Age: Not Available
Location:
Title: Student
Joined: Aug 02, 2010
Education: Bachelors Degree
 More Blogs from this Blogger
No record available
 Latest Blogs
[Video] OnClose Handler
[Video] Storing and Loading the Window and Toolbar position
The Euclidean Algorithm
Swapping Exe Process
How Exe file is Generated by VS2005 C++ Project?
What is Exe
Header files: Multiple Inclusion problem - Solution B
Header files: Multiple Inclusion problem - Solution A
Header files: Multiple Inclusion problem - Reason
Header files: Multiple Inclusion problem
View all »
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 

 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.