Expert advice on app development
I have learnt the basics of c# language. And would like to start developing a mobile application that has accounts,threads,records,e.t.c (social, database) And as of now I have compilers on my tablet: Dcoder, and compiler. I would like advice on what parts I can make with these without a standard laptop-based sdk. And things like how to design the menu and account frameworks. And also if you know better mobile apps, feel free to share.Thank you
Answers (2)
0
Bind the DropDownList like normal (set DataSourceID, DataTextField,
DataValueField), and <%BIND%> the SelectedValue field.
AutoPostBack should be enabled. In the OnSelectedIndexChanged:
protected void DropDownSelectedIndexChanged(object sender, EventArgs e)
{
//http://programming.top54u.com/post/GridView-DropDownList-Update-SelectedValue-All-At-Once.aspx
//http://www.codeproject.com/KB/webservices/db_values_dropdownlist.aspx
DropDownList d = sender as DropDownList;
if (d == null) return;
//grab row that contains the drop down list
GridViewRow row = (GridViewRow)d.NamingContainer;
//pull data needed from the row (in this case we want the ID for the row)
object ID = gridEntries.DataKeys[row.RowIndex].Values["tableID"];
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SiteSqlServer"].ConnectionString);
conn.Open();
SqlCommand c = new SqlCommand("UPDATE table SET value = @v WHERE tableID = @id", conn);
SqlParameter p = c.Parameters.Add("@id", SqlDbType.Int);
p.Value = Convert.ToInt32(ID);
p = c.Parameters.Add("@v", SqlDbType.Int);
p.Value = Convert.ToInt32(d.SelectedValue);
c.ExecuteNonQuery();
//databind the gridview to reflect new data.
gridEntries.DataBind();
}
|
more info 