I have Post the Code
String Split to stored Array.
======================================
protected void Bt_Submit1_Click1(object sender, EventArgs e)
{
string st = "JESUS";
string[] ar1 = new string[st.Length];
for (int i = 0; i < st.Length; i++)
{
ar1[i] = st[i].ToString();
}
}