Question : Need help finding drivers for a Gateway M325X-3401704 Laptop

I have a Gateway M325X laptop that I need Audio and Mass Storage Controller drivers.  I've downloaded the available drivers from the Gateway/MPC site and they do not work properly.  By this I mean they aren't the correct drivers and/or aren't available.  I'm running Windows XP Home.  

The driver link I have is http://support.gateway.com/support/drivers/search.asp?st=pn&param=1008421

Multimedia Audio Controller PCI\VEN_8086&DEV_266E&SUBSYS_0300107B&REV_04\3&B1BFB68&0&F2

Mass Storage Controller PCI\VEN_104C&DEV_8033&SUBSYS_0300107B&REV_00\4&1D3F0FBB&0&3BF0


Thanks in advance.

Answer : Need help finding drivers for a Gateway M325X-3401704 Laptop

What are you trying to do? Return an xml dataset based on your stored procedure from your service? Then it's as simple as this:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
    [WebMethod]
    public DataSet GetSPData() {
        SqlConnection con;
        SqlCommand cmd;
        SqlDataAdapter adpt;
        DataSet ds = new DataSet();
        string SP = "certifica.ObtenerCodigoCurso";
        con = new SqlConnection(ConfigurationManager.ConnectionStrings["YourConnectionString"].ConnectionString);
        cmd = new SqlCommand(SP, con);
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.Add("@abreviatura ", SqlDbType.NVarChar, 10).Value = "PARAMVALUE";
        adpt = new SqlDataAdapter(cmd);
        con.Open();
        adpt.Fill(ds);
        con.Close();
        return ds;
}
Random Solutions  
 
programming4us programming4us