Click here to Skip to main content
15,890,973 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow to link menus with javascript in asp.net Pin
Ramu.e7-Aug-06 18:12
Ramu.e7-Aug-06 18:12 
QuestionECHO Pin
Tiger4567-Aug-06 17:48
Tiger4567-Aug-06 17:48 
QuestionHow to call/execute window application from web application ? Pin
lethanhtri7-Aug-06 17:20
lethanhtri7-Aug-06 17:20 
AnswerRe: How to call/execute window application from web application ? Pin
ravikiranreddydharmannagari7-Aug-06 18:46
ravikiranreddydharmannagari7-Aug-06 18:46 
GeneralRe: How to call/execute window application from web application ? Pin
Muhammad Chitrali7-Aug-06 22:51
Muhammad Chitrali7-Aug-06 22:51 
QuestionAdding Items To Cart Pin
kjosh7-Aug-06 15:50
kjosh7-Aug-06 15:50 
AnswerRe: Adding Items To Cart Pin
Not Active7-Aug-06 16:37
mentorNot Active7-Aug-06 16:37 
AnswerRe: Adding Items To Cart Pin
Tim Kohler7-Aug-06 16:40
Tim Kohler7-Aug-06 16:40 
Are you manually binding the items to the gridview (i.e. not using a datasourcecontrol)?

If so, make sure your binding is not occuring on postback,

i.e.

if you have something like:

Page_Load
{
BindMyGridView();

}


make if

Page_Load
{
if (!Page.IsPostBack)
BindMyGridView();
}
AnswerRe: Adding Items To Cart Pin
NasimKaziS8-Aug-06 2:16
NasimKaziS8-Aug-06 2:16 
QuestionServer side ms mail merge Pin
tmoney1017-Aug-06 14:16
tmoney1017-Aug-06 14:16 
AnswerRe: Server side ms mail merge Pin
minhpc_bk7-Aug-06 15:23
minhpc_bk7-Aug-06 15:23 
QuestionPasswordRecovery control Pin
Clickok7-Aug-06 13:21
Clickok7-Aug-06 13:21 
AnswerRe: PasswordRecovery control Pin
minhpc_bk7-Aug-06 15:24
minhpc_bk7-Aug-06 15:24 
GeneralRe: PasswordRecovery control Pin
Clickok7-Aug-06 15:30
Clickok7-Aug-06 15:30 
QuestionWhat is wrong with this... Pin
NiPsTeRs7-Aug-06 9:41
NiPsTeRs7-Aug-06 9:41 
AnswerRe: What is wrong with this... Pin
Guffa7-Aug-06 11:45
Guffa7-Aug-06 11:45 
GeneralRe: What is wrong with this... Pin
eggsovereasy8-Aug-06 3:58
eggsovereasy8-Aug-06 3:58 
GeneralRe: What is wrong with this... Pin
Guffa8-Aug-06 8:07
Guffa8-Aug-06 8:07 
QuestionRemoving Image options Pin
Drathmar7-Aug-06 7:49
Drathmar7-Aug-06 7:49 
AnswerMessage Closed Pin
7-Aug-06 8:13
User-8957237-Aug-06 8:13 
GeneralRe: Removing Image options Pin
Drathmar16-Aug-06 12:39
Drathmar16-Aug-06 12:39 
QuestionWorking with DataList Pin
ravindradonkada7-Aug-06 7:10
ravindradonkada7-Aug-06 7:10 
AnswerRe: Working with DataList Pin
Not Active7-Aug-06 8:51
mentorNot Active7-Aug-06 8:51 
Questionitems added in listbox sorted asc[modified] Pin
bubberz7-Aug-06 3:44
bubberz7-Aug-06 3:44 
AnswerRe: Avoid duplicate items in listbox and sort too Pin
Not Active7-Aug-06 3:59
mentorNot Active7-Aug-06 3:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.