|
|
От: |
Andrey Yakovlev
|
|
| Дата: | 18.04.08 10:48 | ||
| Оценка: | |||
<asp:Parameter Name="Id" Direction="Output" Type="Int32"/>protected void DataSource_Inserted(object sender, SqlDataSourceStatusEventArgs e)
{
// Редирект на страницу с Id вставленной записи
Response.Redirect("Form.aspx?Id=" + e.Command.Parameters["@Id"].Value);
}