|
 |
aspx thread: tabcontrolin web application
Message #1 by nahid.mohammadi@b... on Wed, 8 May 2002 17:36:50
|
|
Hello All
I would like to use tabcontrol in my web application. So far based on my
research I only find this type of control under System.Window.Form, and
not anything under System.Web.
Do you have any idea about creating tabcontrol in a web application by
using .NET SDK?
The only one that I know is creating a java applet, but I do not want to
use java.
appreciate any help.
Nahid
Message #2 by Feduke Cntr Charles R <FedukeCR@m...> on Wed, 8 May 2002 12:38:22 -0400
|
|
I'm sure there are examples for this available by now (or at least I
would hope). The best way to go about doing this is designing a Web
UserControl and model it after the one you found in System.Window.Form.
You'd need to add a collection to handle the tabs (name, appearance, graphic
if you so choose), then in the Page_Load event you'd actually draw the tabs.
Each tab would be treated as a LinkButton (either the graphic or the text)
that fires a trapable event that you'd delegate in your control.
Now if you want to do client-side tab stuff, with no round trips to
the server on tab clicks, then you'd need to create a whole other beast.
- Chuck
-----Original Message-----
From: nahid.mohammadi@b... [mailto:nahid.mohammadi@b...]
Sent: Wednesday, May 08, 2002 1:37 PM
To: ASP+
Subject: [aspx] tabcontrolin web application
Hello All
I would like to use tabcontrol in my web application. So far based on my
research I only find this type of control under System.Window.Form, and
not anything under System.Web.
Do you have any idea about creating tabcontrol in a web application by
using .NET SDK?
The only one that I know is creating a java applet, but I do not want to
use java.
appreciate any help.
Nahid
Message #3 by Imar Spaanjaars <Imar@S...> on Wed, 08 May 2002 19:55:09 +0200
|
|
Check out www.asp.net. They have loads of controls including a tab control.
Go to: http://www.asp.net/Default.aspx?tabindex=2&tabid=30 and then click
Navigation Controls. You'll find some tab controls, including the Microsoft
IE TabStrip.
HtH
Imar
At 12:38 PM 5/8/2002 -0400, you wrote:
> I'm sure there are examples for this available by now (or at least I
>would hope). The best way to go about doing this is designing a Web
>UserControl and model it after the one you found in System.Window.Form.
>You'd need to add a collection to handle the tabs (name, appearance, graphic
>if you so choose), then in the Page_Load event you'd actually draw the tabs.
>Each tab would be treated as a LinkButton (either the graphic or the text)
>that fires a trapable event that you'd delegate in your control.
>
> Now if you want to do client-side tab stuff, with no round trips to
>the server on tab clicks, then you'd need to create a whole other beast.
>
>- Chuck
>
>-----Original Message-----
>From: nahid.mohammadi@b... [mailto:nahid.mohammadi@b...]
>Sent: Wednesday, May 08, 2002 1:37 PM
>To: ASP+
>Subject: [aspx] tabcontrolin web application
>
>
>Hello All
>
>I would like to use tabcontrol in my web application. So far based on my
>research I only find this type of control under System.Window.Form, and
>not anything under System.Web.
>
>Do you have any idea about creating tabcontrol in a web application by
>using .NET SDK?
>
>The only one that I know is creating a java applet, but I do not want to
>use java.
>
> appreciate any help.
>
>Nahid
>
Message #4 by "Lewis Bass" <lewis@t...> on Wed, 8 May 2002 15:30:15 -0600
|
|
You might check out microsoft's addin webcontrols
----- Original Message -----
From: <nahid.mohammadi@b...>
To: "ASP+" <aspx@p...>
Sent: Wednesday, May 08, 2002 5:36 PM
Subject: [aspx] tabcontrolin web application
> Hello All
>
> I would like to use tabcontrol in my web application. So far based on my
> research I only find this type of control under System.Window.Form, and
> not anything under System.Web.
>
> Do you have any idea about creating tabcontrol in a web application by
> using .NET SDK?
>
> The only one that I know is creating a java applet, but I do not want to
> use java.
>
> appreciate any help.
>
> Nahid
Message #5 by nahid.mohammadi@b... on Thu, 9 May 2002 04:00:36
|
|
I installed microsoft IE TabStrip. It has put the new "htc" file in my web
server, and registed the DLL . Afterall these, my browser can not see the
tab or tabstrips. Do you have any code sample which is written in
visual .NET that is used this Assembly?
I appreciate any help.
Nahid
> Check out www.asp.net. They have loads of controls including a tab
control.
Go to: http://www.asp.net/Default.aspx?tabindex=2&tabid=30 and then click
Navigation Controls. You'll find some tab controls, including the
Microsoft
IE TabStrip.
HtH
Imar
At 12:38 PM 5/8/2002 -0400, you wrote:
> I'm sure there are examples for this available by now (or at
least I
>would hope). The best way to go about doing this is designing a Web
>UserControl and model it after the one you found in System.Window.Form.
>You'd need to add a collection to handle the tabs (name, appearance,
graphic
>if you so choose), then in the Page_Load event you'd actually draw the
tabs.
>Each tab would be treated as a LinkButton (either the graphic or the text)
>that fires a trapable event that you'd delegate in your control.
>
> Now if you want to do client-side tab stuff, with no round trips
to
>the server on tab clicks, then you'd need to create a whole other beast.
>
>- Chuck
>
>-----Original Message-----
>From: nahid.mohammadi@b... [mailto:nahid.mohammadi@b...]
>Sent: Wednesday, May 08, 2002 1:37 PM
>To: ASP+
>Subject: [aspx] tabcontrolin web application
>
>
>Hello All
>
>I would like to use tabcontrol in my web application. So far based on my
>research I only find this type of control under System.Window.Form, and
>not anything under System.Web.
>
>Do you have any idea about creating tabcontrol in a web application by
>using .NET SDK?
>
>The only one that I know is creating a java applet, but I do not want to
>use java.
>
> appreciate any help.
>
>Nahid
>
Message #6 by "Lewis Bass" <lewis@t...> on Thu, 9 May 2002 07:27:20 -0600
|
|
I had a similiar problem if you are talking about the webcontrolls bundle
from Microsoft.
My problem was that I could see the tabstrip and multi pages on my
development box, but not on the server (both are win2000).
To resolve the issue I had to copy the c:\inetpub\wwwroot\webctrl_clients
directory to the server.
Could this be your problem???
----- Original Message -----
From: <nahid.mohammadi@b...>
To: "ASP+" <aspx@p...>
Sent: Thursday, May 09, 2002 4:00 AM
Subject: [aspx] RE: tabcontrolin web application
> I installed microsoft IE TabStrip. It has put the new "htc" file in my web
> server, and registed the DLL . Afterall these, my browser can not see the
> tab or tabstrips. Do you have any code sample which is written in
> visual .NET that is used this Assembly?
> I appreciate any help.
>
> Nahid
> > Check out www.asp.net. They have loads of controls including a tab
> control.
>
> Go to: http://www.asp.net/Default.aspx?tabindex=2&tabid=30 and then click
> Navigation Controls. You'll find some tab controls, including the
> Microsoft
> IE TabStrip.
>
> HtH
>
> Imar
>
>
>
>
> At 12:38 PM 5/8/2002 -0400, you wrote:
> > I'm sure there are examples for this available by now (or at
> least I
> >would hope). The best way to go about doing this is designing a Web
> >UserControl and model it after the one you found in System.Window.Form.
> >You'd need to add a collection to handle the tabs (name, appearance,
> graphic
> >if you so choose), then in the Page_Load event you'd actually draw the
> tabs.
> >Each tab would be treated as a LinkButton (either the graphic or the
text)
> >that fires a trapable event that you'd delegate in your control.
> >
> > Now if you want to do client-side tab stuff, with no round trips
> to
> >the server on tab clicks, then you'd need to create a whole other beast.
> >
> >- Chuck
> >
> >-----Original Message-----
> >From: nahid.mohammadi@b... [mailto:nahid.mohammadi@b...]
> >Sent: Wednesday, May 08, 2002 1:37 PM
> >To: ASP+
> >Subject: [aspx] tabcontrolin web application
> >
> >
> >Hello All
> >
> >I would like to use tabcontrol in my web application. So far based on my
> >research I only find this type of control under System.Window.Form, and
> >not anything under System.Web.
> >
> >Do you have any idea about creating tabcontrol in a web application by
> >using .NET SDK?
> >
> >The only one that I know is creating a java applet, but I do not want to
> >use java.
> >
> > appreciate any help.
> >
> >Nahid
> >
>
>
>
|
|
 |