本文介绍了在C#.net中集成Dropbox的步骤.这是给我的论文项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

**帮帮我,我只需要从头到尾的步骤,一个详细的步骤,因为即时通讯在编程方面不太好.我读了Dropnet,但我不理解的男人.这真的会帮助我很多人.我用我的C#应用​​程序完成了操作,这是我唯一的问题,因为我不知道如何集成它... **

**help me guys, i just only need steps from first till the end, a detailed steps because im not that good in programming. i read the dropnet but men i dont understand. this will really help me alot guys. im done with my C# app then this is the only my problem because i dont know how to integrate it...**

推荐答案



try this one.

<pre lang="c#">
    DataSet ds = new DataSet();
    OdbcConnection con = new OdbcConnection(ConnStr);
    OdbcDataAdapter da = new OdbcDataAdapter("SELECT ...", con);
    con.Open();
    da.Fill(ds);
    dt = ds.Tables[0];

        dropdownlist.DataSource = ds
        dropdownlist.DataTextField = "Team"
        dropdownlist.DataValueField = "Team"
        dropdownlist.DataBind()

    con.Close();
</pre>

Best Regards,
iamsupergrasya


这篇关于在C#.net中集成Dropbox的步骤.这是给我的论文项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 11:29