Click here to Skip to main content
15,906,626 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HELLO guys.
I have created a form in html which consits of 8 cols.Now the problem that I am facing is I have a column with status as not replied by default now the status should change automatically from not replied to replied as soon as the user submits a reply to that questiion.I don't know how to go through it.pls help me guys.

What I have tried:

I haven't tried much as I don't know how to go through that. .
Posted
Updated 21-Aug-18 0:00am
v2

1 solution

HTML is not a programming language, it's a markup language which describes controls and how they are placed - it's a static description of a web page, not something that can be dynamic.

To add dynamic elements to your page, you need to either use Javascript on the Client, or a proper programming language on the Server - C#, VB, or PHP for example. The Client language interacts with the HTML to produce an interactive site, the Server language can interact - but generally more slowly - and produces completely new HTML that the user sees.

So to do this, you will have to decide how you want this to work, and probably do a fair amount of reading and learning before you even start.
 
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