Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using TabControl in Web Application

Status
Not open for further replies.

payal1711

Programmer
Jul 13, 2004
2
US
Hi,

Can anyone tell me how to use System.Windows.Form.TabControl in a web application?

When I try to use it, it is giving me an error that 'it cannot find namespace Windows in the System namespace.

Thanks,
Payal
 
Payal,
Windows Forms and Web Forms are two different animals. As such, the controls they use are different because they target different environments. The Windows Forms TabControl is great but you couldn't use it in a Web Forms application.

The link below discusses a technique you could use to add Tab capabilities to your web apps. If the link below doesn't help you, just do a google search on TabControl + Web and you'll find tons of resources to accomplish what you want.

IE WebControls

JC



_________________________________________________
To get the best response to a question, read faq222-2244.
 
Thanks JC,

I was able to create the control using TabStrip web control. Since I will be extensively using C# and database interaction, I hope that I can play with TabStrip control using both of above.

Thank You.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top