Click here to Skip to main content
15,892,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Number of rows in a gridview with paging and a filter. Pin
Martin_10-Jul-07 5:02
Martin_10-Jul-07 5:02 
GeneralRe: Number of rows in a gridview with paging and a filter. Pin
jcdevnet10-Jul-07 5:25
jcdevnet10-Jul-07 5:25 
Questioncode problem Pin
boyindie10-Jul-07 4:11
boyindie10-Jul-07 4:11 
AnswerRe: code problem Pin
jcdevnet10-Jul-07 4:19
jcdevnet10-Jul-07 4:19 
GeneralRe: code problem Pin
boyindie10-Jul-07 5:23
boyindie10-Jul-07 5:23 
QuestionProfile Properties Viewing Dynamacly Pin
TesterKrestovik10-Jul-07 3:59
TesterKrestovik10-Jul-07 3:59 
QuestionASP.NET failed to maintain state when dynamically binding columns datagrid Pin
N a v a n e e t h10-Jul-07 3:36
N a v a n e e t h10-Jul-07 3:36 
AnswerRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
Michael Sync10-Jul-07 5:45
Michael Sync10-Jul-07 5:45 
Yeah. That's why we used to do like that

Page_load(){<br />
  if(!IsPostBack){<br />
     DataSet ds = Database.GetDataMethod();<br />
     datagrid.DataSource = ds.Table[0];<br />
     datagrid.DataBind();<br />
     Cache["mydata"] = ds.Table[0];<br />
  }<br />
  else{<br />
     datagrid.DataSource = Cache["mydata"];<br />
     datagrid.DataBind();    <br />
  }<br />
}


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)


GeneralRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
N a v a n e e t h10-Jul-07 18:12
N a v a n e e t h10-Jul-07 18:12 
GeneralRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
Michael Sync10-Jul-07 19:21
Michael Sync10-Jul-07 19:21 
GeneralRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
N a v a n e e t h10-Jul-07 22:22
N a v a n e e t h10-Jul-07 22:22 
AnswerRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
Rhys Gravell10-Jul-07 20:55
professionalRhys Gravell10-Jul-07 20:55 
GeneralRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
N a v a n e e t h10-Jul-07 22:25
N a v a n e e t h10-Jul-07 22:25 
GeneralRe: ASP.NET failed to maintain state when dynamically binding columns datagrid Pin
Rhys Gravell10-Jul-07 22:56
professionalRhys Gravell10-Jul-07 22:56 
Questionhow to find no of days in a month Pin
Vipin.d10-Jul-07 2:39
Vipin.d10-Jul-07 2:39 
AnswerRe: how to find no of days in a month Pin
Christian Graus10-Jul-07 2:39
protectorChristian Graus10-Jul-07 2:39 
GeneralRe: how to find no of days in a month Pin
Vipin.d10-Jul-07 3:30
Vipin.d10-Jul-07 3:30 
QuestionClearing Text in a Label Control Before Redericting The Page Pin
Mahesh.J10-Jul-07 2:35
Mahesh.J10-Jul-07 2:35 
AnswerRe: Clearing Text in a Label Control Before Redericting The Page Pin
Christian Graus10-Jul-07 2:38
protectorChristian Graus10-Jul-07 2:38 
QuestionWeb services Pin
Imthu10-Jul-07 2:26
Imthu10-Jul-07 2:26 
AnswerRe: Web services Pin
Christian Graus10-Jul-07 2:35
protectorChristian Graus10-Jul-07 2:35 
GeneralRe: Web services Pin
Imthu10-Jul-07 2:47
Imthu10-Jul-07 2:47 
GeneralRe: Web services Pin
Sathesh Sakthivel10-Jul-07 2:55
Sathesh Sakthivel10-Jul-07 2:55 
GeneralRe: Web services Pin
Christian Graus10-Jul-07 5:14
protectorChristian Graus10-Jul-07 5:14 
QuestionRouting using web page Pin
moon_stick10-Jul-07 1:35
moon_stick10-Jul-07 1:35 

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.