CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.internet_explorer_web_controls Tags:
Item Type: NewsGroup Date Entered: 4/1/2004 3:08:52 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 62 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
5 Items, 1 Pages 1 |< << Go >> >|
love_luv
Asp.Net User
MultiPage - PageView and TabStrip Question !!4/1/2004 3:08:52 PM

0/0

am using IE TabStrip Control with MultiPage !!

Control are awesome....

But here are couple of quick questions ?

1) Will this control work on Other Browsers like Netscape etc ?

2) I have 4 Tab in TabStrip and I have MultiPage - PageView structure with it. The problem I am seeing is I see all the Design code in .aspx file so my .aspx file is too large as I have many panels etc and as a result I have large .aspx.cs file.


<IEWC:TABSTRIP ID="SupportTab" RUNAT="server" TARGETID="SupportMultiPage">
<IEWC:TAB TEXT="Log"></IEWC:TAB>
<IEWC:TAB TEXT="KnowledgeBase"></IEWC:TAB>
<IEWC:TAB TEXT="Reports"></IEWC:TAB>
<IEWC:TAB TEXT="Admin"></IEWC:TAB>
</IEWC:TABSTRIP>
<IEWC:MULTIPAGE ID="SupportMultiPage" RUNAT="Server">
<IEWC:PAGEVIEW ID="Log">
<ASP:PANEL ID="1"></ASP:PANEL>
<ASP:PANEL ID="2"></ASP:PANEL>
<ASP:PANEL ID="3"></ASP:PANEL>
<ASP:PANEL ID="4"></ASP:PANEL>
</IEWC:PAGEVIEW>
<IEWC:PAGEVIEW ID="KB">
</IEWC:PAGEVIEW>
<IEWC:PAGEVIEW ID="Reports">
<ASP:PANEL ID="ReportPanel"></ASP:PANEL>
</IEWC:PAGEVIEW>
<IEWC:PAGEVIEW ID="Admin">
<ASP:PANEL ID="1"></ASP:PANEL>
<ASP:PANEL ID="2"></ASP:PANEL>
<ASP:PANEL ID="3"></ASP:PANEL>
<ASP:PANEL ID="4"></ASP:PANEL>
</IEWC:PAGEVIEW>
</IEWC:MULTIPAGE>

So as you see I have 4 Tabs with MultiPage. Few MultuPage has multiple panels and panels has texboxes, dropdown list, Datagrid etc...

As a result my .aspx file and .aspc.cs file is becoming too large. And If I add one more Tab, it will still grow large..

Is there anyway I can make it more organize/managable code ??

I initially used CSS and wrote my own code for TabStrip with some article help. In that case, I had different .aspx pages for different Tabs.

Can I achieve similar thing with MultiPage and TabStrip ??
gerryhigh
Asp.Net User
Re: MultiPage - PageView and TabStrip Question !!4/1/2004 5:49:35 PM

0/0

One option is to put the code for each pageview into a separate user control.

Gerry
love_luv
Asp.Net User
Re: MultiPage - PageView and TabStrip Question !!4/1/2004 7:24:13 PM

0/0

So you mean, have different user control file for eacg pageview and load user control file when Tabs are selected ??

How do I load user control file in PageView with appropriate Tab Selected ??
shashijk
Asp.Net User
Re: MultiPage - PageView and TabStrip Question !!4/6/2004 5:00:06 AM

0/0

you can use the "selectedIndex" attribute of the TabStrip control.
gerryhigh
Asp.Net User
Re: MultiPage - PageView and TabStrip Question !!4/6/2004 4:14:34 PM

0/0

Actually, I was thinking you do this from server side code. For example, given a multi-page control called mp1, do something like this:

Microsoft.Web.UI.WebControls.PageView pv = new Microsoft.Web.UI.WebControls.PageView();
MyUserControl ucx = (MyUserControl)LoadControl("../UserControls/MyUserControl.ascx");
ucx.ID = "ucxXXX";
....
pv.Controls.Add(ucx);
mp1.Controls.Add(pv);

etc.

Gerry
5 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Advanced SharePoint Services Solutions: Advanced Sharepoint Services Solutions Authors: Scot P. Hillier, Pages: 365, Published: 2005
Pro ASP.NET Web Forms Techniques Authors: Alex Homer, Pages: 580, Published: 2003
ASP.NET Unleashed: unleashed Authors: Stephen Walther, Pages: 1488, Published: 2003
Beginning ASP.NET in VB.NET: From Novice to Professional Authors: Matthew MacDonald, Pages: 983, Published: 2004
RadControls for ASP.NET: A Step By Step Learning Guide Authors: unknown, Pages: 0, Published: -1
ASP.NET Developer's Cookbook Authors: Steven A. Smith, Rob Howard, ASP Alliance, ASP Alliance, Pages: 456, Published: 2003
ASP.NET by Example Authors: Steven A. Smith, Pages: 552, Published: 2002
Buku Latihan Authors: Ario Suryo Kusumo, Pages: 0, Published: -1

Web:
help badly needed : tabstrip ,multipage and pageview - ASP.NET Forums newbie question i tried to copy the code in msdn about using tabstrip together with multipage. each tab shows pageview with checkboxes, ...
WebControls: TabStrip, MultiPage, PageView Talk about WebControls: TabStrip, MultiPage, PageView.
Aspx pages in tabstrip using rad multi page view - telerik Forum I am using rad tab strip and rad multi page view . ... Instantly find answers to your questions at the new Telerik Support Center ...
OnInit Method (MULTIPAGE, PAGEVIEW, TABSTRIP, ...) Internet Explorer WebControls, About the MultiPage WebControl, About the TabStrip WebControl, About the Toolbar WebControl, About the TreeView WebControl ...
Using a TabStrip Control with a MultiPage Control (VB.net) : Tab ... Multipage pageview control without tabstrip - ASP.NET Forums I have a multipage pageview control on my form, i am not using tabstrip control ... Silverlight: Most Frequently Asked Question: When Will Silverlight Ship? ...
Tab Strip Question Using IE Web Controls - .NET C# Tab Strip Question Using IE Web Controls. Get answers to your questions in our ... This is Page One ...
TabStrip & Multipage inside FormView - telerik Forum I have create the Website with the RAD TAb strip Under this i have create the RAD Multipage and under that i have created pageview. ...
Dynamic tabstrip and multipage, dynamic data – r.a.d.tabstrip The tabstrip in conjunction with the multipage can be used to present dynamic ... demonstrates tabstrip databinding along with dynamic pageview creating. ...
C# .NET MultiPage / Tabstrip controls Sep 3, 2004 ... I had a question about the multipage / tabstrip controls. here's what i'm ... it brings up the respective pageview. i like the multipage ...




Search This Site:










using controls in usercontrols with codebehind.

asp .net assembly/compilation issues re: visualstudio.net 2002 and 2003

page title with masterpage

access var in materpage from user control

settings not accessable for modules

regarding contentpage

opening/editing ms word document

using the built-in webserver for development.

using application variables vs datasets (memory usage)

google is full

sitefinity cms

application root on xp

problem with shopping cart

matching values in repeaters

which vs editions support uml generation (export)

expert system for dnn (i think thats what they are called)

doing without findcontrol?

dynamic radiobutton

help with <!-- #include -->

modify web.config?

how can i open popupwindow using response.redirect

dataentry form using webpart

integration problems with membership, profile, session keys

custom user control dissapears on page load

access sql ddl script hell

after upgrading from vs03 to vs05 i have user controls issues

placeholders and panels

need help on understanding oop concepts

application path and speed issues with 2003 server

dropdownlist default value

 
All Times Are GMT