Do Form Post and Post Back differ from each other?
-
Yes
-
No
-
Sometimes
-
Can't be determined
A
Correct answer
Explanation
Form Post refers to the HTTP POST method that submits form data to a server. PostBack is an ASP.NET mechanism where a page posts form data back to itself for server-side processing. While related, they are different concepts - PostBack is a specific pattern of Form Post in ASP.NET.