I'm getting this error of "a value of integral value type expected"
I have two radiobuttonlist I'm trying to get values from. The values are strings so I"m lost as to the problem here. I'm thinking this must be an array and I need to use 0,1,2,3... instead of the actaul value I gave each list.
heres the code:
switch (purposes)
{
case "FClass":
string purpose = FClass;
switch(techpath)
{
case "Intel":
string techpath = Intel;
break;
case "AMD":
string techpath = AMD;
break;
case "DualIntel":
string techpath = DualIntel;
break;
case "DualAMD":
string techpath = DualAMD;
break;
case "Hidden":
string techpath = Hidden;
break;
default:
Response.Write("You must select a Tech Path");
break;
}
break;