Ya me quedo asi; gracias por nada xd
Código C#:
Ver original<select>
<%
string strCon = @"Server=192.168.16.10\SIO;Uid=SHACHOU;Pwd=shac!7#ser;DataBase=SIAT";
string QueryTipoVacante = "SELECT PKtipoVacante, TipoVacante FROM CatcTipoVacante";
ClsFunciones funciones = new ClsFunciones();
System.Data.SqlClient.SqlDataAdapter da = new System.Data.SqlClient.SqlDataAdapter(QueryTipoVacante, strCon);
System.Data.DataTable dt = new System.Data.DataTable();
da.Fill(dt);
int count = dt.Rows.Count;
for (int i = 0; i < count; i++ )
{
Response.Write("<option value='" + dt.Rows[i]["PKtipoVacante"] + "'>" + dt.Rows[i]["TipoVacante"] + "</option>");
}
%>
</select>