Hi Rex:
Thank very much for the response.
Yes, I did solve the problems I encountered with cascading dropdownlists (ddl) in datagrid footer. As suggested by you and poster ecbruck, there are 4 things that one should do:
1. Make sure you use if (!Page.IsPostBack) in Page_Load method
2. Make sure you set AutoPostBack="True" for the ddl's
3. Make sure you specify a handler for the OnSelectedIndexChanged of the ddl
and, last but not least,
4. Make sure the handler for the OnSelectedIndexChanged of the ddl is declared as public (not private)
Thanks again.
sg2000