G
Guest
Ok, I have my first full blown .NET 05 web application 99.9% complete except
for these 2 issues. can anyone help me out?
1) If a page gets and error and the user clicks on the menu it takes them
back to the login screen. How can I prevent that from happening? If they see
the 'user friendly" error page I want them to be able to click another menu
option and go to that page without going back to the login screen. (I'm not
using the membership provider for this app)
2) on several of my pages I have several drop downs and a button. When the
user makes a selection from a drop down and clicks the button, it loads the
..NET gridView. Now I need these grids sortable. How can I accomplish this?
a) I'm NOT using an SQLObjectDataSource to bind my grid
b) if I load my grid without any drop downs I can sort, its the
grids that load
based off of a drop down selection
example:
void GetSales(string lastName)
{
binds grid based off of the last name
can't sort grid when using this
}
BUT if i do
void GetSales()
{
binds grids and I can sort the gridview
}
need help on these. thanks
for these 2 issues. can anyone help me out?
1) If a page gets and error and the user clicks on the menu it takes them
back to the login screen. How can I prevent that from happening? If they see
the 'user friendly" error page I want them to be able to click another menu
option and go to that page without going back to the login screen. (I'm not
using the membership provider for this app)
2) on several of my pages I have several drop downs and a button. When the
user makes a selection from a drop down and clicks the button, it loads the
..NET gridView. Now I need these grids sortable. How can I accomplish this?
a) I'm NOT using an SQLObjectDataSource to bind my grid
b) if I load my grid without any drop downs I can sort, its the
grids that load
based off of a drop down selection
example:
void GetSales(string lastName)
{
binds grid based off of the last name
can't sort grid when using this
}
BUT if i do
void GetSales()
{
binds grids and I can sort the gridview
}
need help on these. thanks