Forum: ASP.NET2.0 |
Thema:
AW: AW: AW: Update der DropDownlist (Template Item) im GridView |
Von:
Hannes Preishuber (
28.02.2007 07:44) |
ist zwar nicht die passende ANtowrt (oder doch?) aber warum machst du keine deklarative Datenbindung statt:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DropDownList ddl = (DropDownList)e.Row.FindControl("cmbStrKat");
ddl.SelectedValue = ((Strasse)e.Row.DataItem).StrkSeq.ToString();
}}
machst du
<asp:DropDownList ID="cmbStrKat" runat="server" DataSourceID="ObjectDataSource3" DataTextField="Strart" DataValueField="StrkSeq" SelectedValue='<%# Bind("strasse..") %>'></asp:DropDownList>
PS: Artikel http://beta.devtrain.de/artikel.aspx?artikelid=967
-Hannes
Betreff |
Von |
Datum |
|
|
Kerstin
Arkenberg
|
28.02.2007 09:24 |
|
|
Hannes
Preishuber
|
28.02.2007 10:04 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!