Click here to Skip to main content
15,923,789 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: about calander controlin asp.net Pin
Christian Graus23-Nov-07 10:52
protectorChristian Graus23-Nov-07 10:52 
GeneralRe: about calander controlin asp.net Pin
srinivasbau23-Nov-07 11:10
srinivasbau23-Nov-07 11:10 
GeneralRe: about calander controlin asp.net Pin
Christian Graus23-Nov-07 12:47
protectorChristian Graus23-Nov-07 12:47 
AnswerRe: about calander controlin asp.net Pin
pmarfleet23-Nov-07 11:23
pmarfleet23-Nov-07 11:23 
AnswerRe: about calander controlin asp.net Pin
Michael Sync23-Nov-07 17:33
Michael Sync23-Nov-07 17:33 
QuestionMySQL Membership Provider problem Pin
Bursh.23-Nov-07 6:48
Bursh.23-Nov-07 6:48 
AnswerRe: MySQL Membership Provider problem Pin
pmarfleet23-Nov-07 11:25
pmarfleet23-Nov-07 11:25 
QuestionGetTableData question Pin
Tesic Goran23-Nov-07 4:29
professionalTesic Goran23-Nov-07 4:29 
Hi there,

I have the situation as follows:

I have custom web part, which is provider and consumer at the same time. It implements IWebPartTable interface. When I work with my custom web part in "chain mode", which means web part p1 provides data for web part p2 and web part p2 provides data for web part p3 (p1->p2->p3) the data in all web parts are displayed properly. But, if I work with my web part in "parallel mode", which means web part p1 provides data for web parts p2 and p3 (p1->p2, p1->p3), the data only displayed in last web part p3. All connections are there!

The problem is that I must move using TableCallback object from GetTableData method on class level. Before moving it on class level, it looked as follows:

public void GetTableData(TableCallback callback)
{
callback(_table.Rows);
}

After moving it, it looks as follows:

public sealed class TableProviderWebPart : WebPart, IWebPartTableExtended
{
private TableCallback tableCallback;

...

public void GetTableData(TableCallback callback)
{
this.tableCallback = callback;
}
}

Do you have any suggestion how to make my web part work in "parallel mode" as well?


Thank you in advance.

Goran Tesic

Questionajax and IE Pin
mohammad tavakoli23-Nov-07 4:04
mohammad tavakoli23-Nov-07 4:04 
AnswerRe: ajax and IE Pin
pmarfleet23-Nov-07 4:25
pmarfleet23-Nov-07 4:25 
AnswerRe: ajax and IE Pin
Christian Graus23-Nov-07 9:53
protectorChristian Graus23-Nov-07 9:53 
AnswerRe: ajax and IE Pin
Malcolm Smart23-Nov-07 11:08
Malcolm Smart23-Nov-07 11:08 
GeneralRe: ajax and IE Pin
mohammad tavakoli23-Nov-07 19:35
mohammad tavakoli23-Nov-07 19:35 
Questionreading the gridview cell value Pin
Sunil Wise23-Nov-07 3:34
professionalSunil Wise23-Nov-07 3:34 
GeneralRe: reading the gridview cell value Pin
Sunil Wise23-Nov-07 18:05
professionalSunil Wise23-Nov-07 18:05 
QuestionImage disappear with IIS Pin
ycorre23-Nov-07 3:03
ycorre23-Nov-07 3:03 
AnswerRe: Image disappear with IIS Pin
Michael Sync23-Nov-07 17:40
Michael Sync23-Nov-07 17:40 
GeneralRe: Image disappear with IIS Pin
ycorre25-Nov-07 9:25
ycorre25-Nov-07 9:25 
GeneralRe: Image disappear with IIS Pin
Michael Sync25-Nov-07 14:44
Michael Sync25-Nov-07 14:44 
QuestionChange background color in Crystal Report Pin
Suryanairg23-Nov-07 2:40
Suryanairg23-Nov-07 2:40 
Questionfill dropdownlist in javascript Pin
helelark12323-Nov-07 2:03
helelark12323-Nov-07 2:03 
AnswerRe: fill dropdownlist in javascript Pin
SHatchard23-Nov-07 2:17
SHatchard23-Nov-07 2:17 
GeneralRe: fill dropdownlist in javascript Pin
helelark12323-Nov-07 3:36
helelark12323-Nov-07 3:36 
AnswerRe: fill dropdownlist in javascript Pin
pmarfleet23-Nov-07 2:22
pmarfleet23-Nov-07 2:22 
GeneralRe: fill dropdownlist in javascript Pin
helelark12323-Nov-07 3:36
helelark12323-Nov-07 3:36 

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.