Click here to Skip to main content
15,918,889 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
i have 3 forms in html , and i want to use them all because the css depends on them

so how to use 3 form in asp.net in Master-Content pages

regards

maulik shah
Posted

Hi,

Don't worry, try to change form tag to div tag and apply the css class to the div tag that's it and you can't use 3 server form tag in single aspx page.
 
Share this answer
 
Master pages allow you to create a consistent look and behavior for all the pages (or group of pages) in your web application.

A master page provides a template for other pages, with shared layout and functionality. The master page defines placeholders for the content, which can be overridden by content pages. The output result is a combination of the master page and the content page.

The content pages contain the content you want to display.

When users request the content page, ASP.NET merges the pages to produce output that combines the layout of the master page with the content of the content page.

http://www.w3schools.com/website/webforms_style.asp[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900