all groups > asp.net > march 2008 > threads for sunday march 9
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
What about the next statement afeter response.redirect and server.transfer?
Posted by lander at 3/9/2008 8:20:57 PM
I've seen many people have written code like this:
response.redirect();
return;
or
server.transfer();
return;
I doubt whether the statement "return;" will be hit? I think it's
redundant, isn't it?... more >>
Getting values from another control in a datalist
Posted by Regan at 3/9/2008 7:09:27 PM
So, I have DatalistA on my form; it is rebinding with a refreshed datasetB
after each post back.
DatalistA contains buttonC and labelD, bound to datasetB.
What do I have to do in the OnClick event of buttonC, to retrieve the text
value of labelD?
Thank for your help!
... more >>
DropDownList DataGrid
Posted by RN1 at 3/9/2008 4:41:54 PM
A DataGrid displays 3 columns from a database table - ID, Name &
Subject. When the DataGrid is in the editable mode, I want the 3rd
column Subject to a DropDownList so that users can change the subject.
This is how I tried it:
-------------------------------------------------------------------... more >>
Appplication_AuthenticateRequest
Posted by Peter Morris at 3/9/2008 4:02:27 PM
Hi all
First I want to say that I don't want to implement the membership providers.
I'm writing some specific documentation, and those come into it later :-)
I am using Forms authentication in a website. I want access to different
areas based on roles. When the user logs in I determine t... more >>
why does this not work at postback?
Posted by Vincent at 3/9/2008 12:21:39 PM
Hi,
the dropdownlist is fed by code-behind with property 'autopostback'="true".
What i want is to put a color to the items of the dropdownlist. I tried two
ways: with Attributes.Add("style", "color:red") and with
DropDownList1.ForeColor.
EnabledViewState is set to "true".
The first way... more >>
"Change Color" feature on aspx pages
Posted by Tamer Ibrahim at 3/9/2008 11:51:09 AM
Hi,
I want to mimic the "Page Options" existing on the www.msn.com especially
the change color feature on my site.
Any helpful resources describe the idea of that will be most appreciated.
Thank you.
... more >>
ArrayList
Posted by BIJU at 3/9/2008 5:36:00 AM
Hai,
I have a problem in declaring ArrayList. When I declared an instance of
arralist varible in page load event ex :- Dim arrList as ArrayList, I got an
error message "Type expected". I dont know what is wrong with declaration.
Anybody pls help me and thanks in advance
Thanks and regard... more >>
display the selected item at the top in a gridview
Posted by Robert Smith at 3/9/2008 4:21:00 AM
Hi,
I have a problem whereby I have a gridview bound to a dataset with a
large number of items, However when I select an item near the bottom by using
the scrollbar, when the gridview gets rebound, the selected field goes off
the screen and is not visible and the user has to use the scro... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to switch content page?
Posted by Ben at 3/9/2008 3:26:44 AM
Hi,
i'm trying to build a simple site navigation (using c#)... i
implemented a master page that shows a sidebar user control on the
left side, and a content page on the right.
i click the link on the sidebar which calls Redirect.
problem is that the whole page refreshes... i just want the... more >>
|