|
|
От: | leleophan | |
| Дата: | 09.08.05 13:38 | ||
| Оценка: | |||
void Page_Load(...)
{
if (!Page.IsPostBack)
{
/* много чего грузим из БД */
}
for (int i=0; i<records_on_page; i++)
{
MyRecordSet[showed_records].Write();
showed_records++;
}
Response.Write("<a href=\"index.aspx\">следующие...</a>");
}