In this blog we are going to see, How to Get Alphabets from the Number
using C#
Declare string for alphabet
string strAlpha = "";
Loop through the ASCII characters 65 to 90
for (int i = 65; i <= 90;
i++) //
Convert the int to a char to get the actual character behind the ASCII
code
strAlpha += ((char)i).ToString()
+ " ";
Displaying alphabets
Response.Write(strAlpha);
Code Snippet:
public void
GetAlphabets()
{

durga muthuPosted Sep 30, 2013, 1:44 AM
if im pasing int value 26 then i want to get the string 'A' if im pasing int value 27 then i want the string "AA" is that possible