C# ASP.NET StringBuilder Source Code Example

Get 5 Hours of FREE PREMIUM Videos:

LearnVisualStudio.NET Free Preview


LearnVisualStudio.NET Free Preview: Declaring Variables and Assigning Values

I am a lifetime member of LearnVisualStudio.net and a Premium Plus member of dotNetVideos.net.

LearnVisualStudio.net is awesome because it grows in value each year as more videos are added.

dotNetVideos.net is also great because it focuses a lot on MS Certifications and practical interview questions.


- Wade Harvey (IdealProgrammer.com)

LearnVisualStudio Premium Videos

Visual C# 2010 for Absolute Beginners C# for Absolute Beginners C# for Absolute Beginners Study Guide Visual Basic for Absolute Beginners Visual Basic Express Edition Study Guide
Visual Basic 9.0 Language Enhancements Entity Framework Linq To Sql Windows Phone 7 Development Unit Testing
ASP.NET MVC 3 (In Progress) ASP.NET MVC Hands On Project ASP.NET For Absolute Beginners Visual Web Developer C# Study Guide Visual Web Developer VB.NET Study Guide
ASP.NET Controls Series ASP.NET AJAX ASP.NET Architecture Series ASP.NET Server Controls Silverlight 4.0
Windows Presentation Foundation Windows Forms Controls Visual Studio 2010 New Features Visual Studio Team System 2008 Visual Studio Team System Features
Getting Started With Sql Server Express Edition


dotNetVideos Premium Video Catalog

Interview Questions & Answers Windows AzureASP.NET MVC 4Windows Phone 7 (3 Videos)Visual Studio 2011 Application Lifecycle Management
LightSwitchHTML 5SOLIDVisual Studio Add-OnsVisual Studio 2010 ALM Lab Management
ASP.NET 4 Deep Dive Microsoft Enterprise Library 5 with ASP.NET 4 (10 Videos)Virtualization Techniques for Developer (5 Videos)Test Series - 70-519: Designing and Developing Web Applications Using Microsoft .NET Framework 4 (20+ Videos)
Test Series - 70-519: Supplemental70-513: Test Series (MCTS) Windows Communication Foundation 4 (20+ Videos)70-515:Web Applications Development with Microsoft .NET Framework 4 (20+ Videos)Test Series - 70-516: Accessing Data with Microsoft .NET Framework 4 (20+ Videos)Test Series: 70-432: Microsoft SQL Server 2008, Implementation and Maintenance (20+ Videos)
Test Series: 70-433: SQL Server AdministrationFrom Novice To Professional - C# (25 Videos)From Novice To Professional - VB.NET (25 Videos)




Premium (Not Free) Video Tutorials

Free Video Tutorials & Free Tools

StringBuilder Source Code Example

Purpose: – Illustrates using and in C-Sharp ASP.NET.

Prerequistes:

  1. Install Visual Web Developer 2008
  2. Install SQL Server Express
  3. Download Northwind and Pubs Databases
  4. Attach Northwind Database to Databases in Sql Express
  5. Attach pubs Database to Databases in Sql Express

Notes:

  • You can build your own library of syntax examples by using same web site over and over and just add new web forms to it.

Instructions:

  1. Use Visual Web Developer 2008
  2. Create new web site;
    • Click File/New Web Site
    • Select ASP.NET Website Template
    • Select C-Sharp for Language
    • name of Web Site could be CSharp_ASPNET_Syntax.
  3. Add New folder named "LanguageBasics"
    • Right-click project name in solution explorer;
    • add new folder;
    • name of folder could be: LanguageBasics
  4. Add Web Form Named StringBuilder to LanguageBasics folder
    • Right-click LanguageBasics folder;
    • add new item;
    • Select Web Form
    • Check place code behind in separate file
    • Web Form name could be StringBuilder
  5. Click on copy code in code below to copy code into web form StringBuilder.aspx
  6. Click on copy code in second set of code below to copy code into code-behind StringBuilder.aspx.cs
  7. Right-click on StringBuilder.aspx in solution explorer and select view in browser

Step 1: Click on Copy Code to Cut-n-paste code into StringBuilder.aspx

 XML |  copy code |? 
< %@ Page Language="C#" AutoEventWireup="true" CodeFile="StringBuilder.aspx.cs" Inherits="LanguageBasics_StringBuilder" %>
 
< !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 id="Head1" runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp :Label ID="Label1a" runat="server" Text="Label"></asp><br />
        <asp :Label ID="Label1" runat="server" Text="Label"></asp><br /><br />
        <asp :Label ID="Label2a" runat="server" Text="Label"></asp><br />
        <asp :Label ID="Label2" runat="server" Text="Label"></asp><br /><br />
        <asp :Label ID="Label3a" runat="server" Text="Label"></asp><br />
        <asp :Label ID="Label3" runat="server" Text="Label"></asp><br /><br />
        <asp :Label ID="Label4a" runat="server" Text="Label"></asp><br />
        <asp :Label ID="Label4" runat="server" Text="Label"></asp><br /><br />
        <asp :Label ID="Label5a" runat="server" Text="Label"></asp><br />
        <asp :Label ID="Label5" runat="server" Text="Label"></asp><br /><br />
 
    </div>
    </form>
</body>
</html>
 


Step 2: Click on Copy Code to Cut-n-paste code into SqlCommandUpdate.aspx.cs
 C# |  copy code |? 
using System.Text;
using System;
 
partial class LanguageBasics_StringBuilder : System.Web.UI.Page
{
 
 
    protected void Page_Load(object sender, System.EventArgs e)
    {
 
 
        //****************************************************************************************
        // Example #1: StringBuilder Append(string) - most common way stringbuilder is used
        // Adds the specified string or string representation of the specified value to the end 
        // of the string
        //****************************************************************************************
 
 
        StringBuilder sb = new StringBuilder();
 
        Label1a.Text = "Example #1: Simple StringBuilder Append(string) ";
        sb.Append("First Line");
        sb.Append("<br />");
        sb.Append("Second Line");
 
        Label1.Text = sb.ToString();
 
 
        //Append(string, startIndex, count)
        //****************************************************************************************
        // Example #2: StringBuilder Append(string, startIndex, count) 
        // Adds a substring of the specified string, starting with the specified
        // position and having the specified length, to the end of the string
        //****************************************************************************************
 
 
        StringBuilder sb2 = new StringBuilder();
        Label2a.Text = "Example #2: StringBuilder Append(string, startIndex, count)";
        sb2.Append("The dog and cat ");
        sb2.Append("love to fight and play", 0, 13);
        //take love to fight and add to end of prev string
        Label2.Text = sb2.ToString();
 
 
 
        //Insert(index, string[, count])
        //****************************************************************************************
        // Example #3: StringBuilder Insert(index, string[, count]) 
        // Inserts the specified string or a string representation of the specified
        // value at the specified position in the string the specified number of 
        // times. If the count is ommitted, a single copy of the string is inserted.
        //****************************************************************************************
 
 
        StringBuilder sb3 = new StringBuilder();
        Label3a.Text = "Example #3: Insert(index, string[, count])";
 
        sb3.Append("This is the initial sentence");
        sb3.Insert(20, "and modified ", 2);
        Label3.Text = sb3.ToString();
 
 
 
        //Remove(startIndex,count)
        //****************************************************************************************
        // Example #4: StringBuilder Remove(startIndex,count) 
        // Removes the specified number of characters from the string starting at
        // the specified position
        //****************************************************************************************
 
 
        StringBuilder sb4 = new StringBuilder();
        Label4a.Text = "Example #4: StringBuilder Remove(startIndex,count)";
 
        sb4.Append("This is the initial sentence");
        sb4.Remove(20, 8);
        Label4.Text = sb4.ToString();
 
 
 
        //Replace(oldString,newString [,startIndex][,count])
        //****************************************************************************************
        // Example #5: StringBuilder Replace(oldString,newString [,startIndex][,count])
        // Replaces all occurences of the old string with the new string starting
        // at the specified position and continuing for the specified number of characters.
        // If you omit startIndex, it starts at beginning
        // If you omit count, it does entire string
        //****************************************************************************************
 
        StringBuilder sb5 = new StringBuilder();
        Label5a.Text = "Example #5: StringBuilder Replace(oldString,newString [,startIndex][,count])";
 
 
        sb5.Append("This is the initial sentence");
        sb5.Replace("initial", "new");
        Label5.Text = sb5.ToString();
 
 
 
    }
}
 
 
 
 


Step 3: Click on Copy Code to Cut-n-paste code into web.config right after the appSettings section
 XML |  copy code |? 
<connectionstrings>
    <add name="Northwind_ConnectionString"
      connectionString="Server=(local)\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=SSPI" />
    <add name="Pubs_ConnectionString"
      connectionString="Server=(local)\SQLEXPRESS;Initial Catalog=pubs;Integrated Security=SSPI" />
  </connectionstrings>
 

Related posts:

  1. VB.NET ASP.NET StringBuilder Source Code Example VB.NET ASP.NET StringBuilder Source Code Example...
  2. C# StringBuilder Source Code Example C# StringBuilder Source Code Example...
  3. VB.NET StringBuilder Source Code Example VB.NET StringBuilder Source Code Example...
  4. C# ASP.NET String.Format DateTime Source Code Example C# ASP.NET String.Format DateTime Source Code Example...
  5. C# ASP.NET Sql Command Update Statement Source Code Example C# ASP.NET Sql Command Update Statement Source Code Example...

Related posts brought to you by Yet Another Related Posts Plugin.

Comments

One Response to “C# ASP.NET StringBuilder Source Code Example”
  1. MemTech says:

    This is really nice post . It's simple and clear. It's really helpful for me and this link

    http://www.mindstick.com/Articles/e02fd204-bc80-45ff-ab0c-e6426f6ed90c/?String%20Builder%20in%20C%20sharp%20.NET
    also helped me to complete my task.

    Thanks

Speak Your Mind

Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!

Powered by WP Hashcash

This blog uses the cross-linker plugin developed by Web-Developers.Net