Skip to main content

Posts

Showing posts with the label create a web form using html

Master Pages

Master Pages Master Pages are those pages that allows you to create a consistent look and behavior for all the page in your web application. Master pages provides a template for other pages with shared layout and functionality. Master pages cannot directly accessed from the client side because it act as a template for other pages. In master pages we can kept the content inside the ContentPlaceHolder or kept the content outside ContentPlaceHolder. We can have multiple master pages in one web application. The extension of Master Pages is ‘.master’. In simple words we can say that master pages is an asp.net file with some predefined layout that contains text, Graphics, HTML and server controls. The example of using master page is given below where we have make a navigation bar using master pages. For creating navigation bar using master page then have to follow some steps :- ·        Create project then add web forms master page item from the following. · ...

Cars Showroom Project

Cars Showroom Project using C++ As we all know that programming knowledge has given a immense change in the technology of world. With the help of programming knowledge lots of new and innovative things are made to be possible. No doubt for expertise in programming knowledge needs some time but after doing daily practice on it we can expertise on any programming knowledge very quickly. In the student level we learn the syntax of programming languages and try to make some project related to real life using this programming languages. Today we are going to make the Cars showroom project using C++ language. About Cars Showroom Project Cars Showroom Project is related to real life. For example in real life we want to buy any car so we can go to the cars showroom and there we see different-2 types of cars and choose according to our comfort. Same in the Cars Showroom Project we have made one online showroom where the user have to choose the car from the following different cars. But ...

Create a web form using html

  How to create a web form using html Today web development is going to be very famous. There are so many ways through we can make our own website. Website is just the collection of webpages. Webpages consist of different things, sections. In webpages we can make our own design so it will seen be unique. We can make website with the help of many frameworks or some software that provides some features. Like WordPress etc. But the direct way to make a web page is with the help of coding in html. You can use any of the IDE [ integrated development environment] or you can use simply notepad. But in any editor you have to save the file with the help of extension. For example in C++ language the extension is [.cpp] and in java the extension is[ .java ] same like in html the extension is [.html] . Now we are going to create a web form using html. Web form in simply the web page which consist of some question which is used for taking information from others. For creating simple web form...