Tagged Questions

0
votes
1answer
22 views

iPhone multi view application design question

Hi! I have a question about iPhone app design approach... I have in mind to make some complex application and I think that the best base for my needs is "Tab Bar Application" templ …
0
votes
0answers
6 views

ActiveIndex error - suggessions needed

I have a activeindex naviagtion error, while i navigate pages using the next button. This issue is happening, when user goes to the last page again come to the front using back bu …
1
vote
1answer
184 views

How to use the ASP .NET AJAX Toolkit Tab with a Grid View inside

Hello, I have already search for some time over the net on how to create an ASP .NET AJAX toolkit tab control which uses GridView inside, could anyone point me on how to do this? …
0
votes
2answers
90 views

Multiview - View Clear State

Hello all, Thanks in advance for your help. I am using c#.net. I have two views on my webpage (contained within one multiview), both contain buttons. view_1 Contains a repea …
0
votes
1answer
58 views

How to stop a web control from loading child controls?

This is for ASP.NET. Think about the multiview control. It has 1 to many view controls. Each view control has the ability of holding controls, but, yet, only one view is visible at …
0
votes
0answers
262 views

ASP.NET Multiview controls render views that are not in use

Hi, Is there any reason Control2 UserControl is being rendered even though I've only asked the MultiView control to show the first view? It seems this is a waste of processor cycl …
0
votes
1answer
117 views

ASP.Net Datalist with linked DataSourceId does not reload

I have a MultiView control which has a View in which a DataList is filled like this: <asp:DataList ID="DataList6" runat="server" DataSourceID="SqlDataSource11" Width="100%"> …
0
votes
0answers
70 views

Showing all MultiView Pages in ASP.NET

Hi, I've got an ASPX application that has lots of details split up into tabs by using a MultiView control. The problem I have now is that the user wants a summary page that displ …
0
votes
0answers
109 views

CausesValidation not working in MultiView

I have a back button in a MultiView which has CausesValidation set to false. I have three views in the MultiView and on the second View the back button with the CausesValidation i …
0
votes
3answers
737 views

UserControl’s Event Handler not firing

I dynamically load a UserControl into a View that's in a MultiView control. Although the UserControl adds an event handler, the event never fires. What am I missing here? Thanks! …
1
vote
1answer
304 views

Trying to set view inside UpdatePanel in PageLoad

Hello, I'm having trouble with a combination of an UpdatePanel and MultiView. I have an UpdatePanel at my top level, inside I have a bunch of imagebuttons - their click events se …
0
votes
2answers
296 views

Linking Multiple asp.NET MultiViews

I am dealing with a master page split into various content placeholders as per usual. On a number of pages I use a multiview to show and hide the content based on different view mo …
0
votes
1answer
388 views

Access UpdatePanel inside View from Another UpdatePanel ASP.Net

I have two updatePanels UpdatePanel 1 contains a button UpdatePanel 2 is inside a Multiview View1 <Multiview> <View1> <UpdatePanel2> </UpdatePanel2> </Vi …
0
votes
2answers
451 views

Communicate between UpdatePanels ASP.Net

I have placed a treeView in One Update Panel and Each View in one update Panel something like this <UpdatePanel id="UP1"> <ContentTemplate> <Tre …
7
votes
3answers
890 views

What is an appropriate use for ASP.NET’s MultiView control?

What are some scenarios where MultiView would be a good choice? The MultiView control along with its View controls simply seem to extend the notion of Panels. Both Panels and Mul …