Chaîne d'entrée n'était pas dans un format correct (ASP.NET)

string s1 = DropDownList1.SelectedItem.Text;
        string s2 = DropDownList2.SelectedItem.Text;
        string sql1 = ("Select Case_Type_Value FROM Case_Type where Case_Type_Text IS'" + s1 + "' ");
        string sql2 = ("Select Case_Status_Value FROM Case_Status where Case_Status_Text IS'" + s2 + "' ");
        int v1 = Int32.Parse(sql1);
        int v2 = Int32.Parse(sql2);

Hi
J'obtiens l'erreur "de la chaîne d'Entrée n'était pas dans un format correct" sur la ligne:
int v1 = Int32.Parse(sql1);

InformationsquelleAutor CodeXerox | 2013-07-29