Clearly Explain the ispostback
Answers were Sorted based on User's Feedback
Answer / vikas
Usually used inside the Page_Load event handler, IsPostBack
checks if the page is being requested by client for the
first time or whether it is being sent as a result of a
postback(form submission). This help you change (or
maintain) the content on the page depending on the type of
request (fresh or postback).
Is This Answer Correct ? | 22 Yes | 0 No |
Answer / kaushal
Ispostback (page.ispostback()) is a method which represents
whether the page state of page is postback or first time
loaded. If the page is postback it returns True and False
for the First Time loaded
Is This Answer Correct ? | 13 Yes | 2 No |
Answer / raj
Ispostback is a method which represents whether the page
state of page is postback or first time loaded or it’s a
round robin process. If the page is postback it returns
True and False for the First Time loaded. The result will
come as Binary 0,1.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rohit
hey one mistake is there in place of before thr is after
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / rameshp
Post back means all form fields and other controls can be
declared to run on the server, and the server simply posts
the page back to itself and performs all the validation,
display and actions.
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / deepak
this indicate all action will perform before page will be
post back like
if(ispostback)
{
}
Is This Answer Correct ? | 5 Yes | 5 No |
What method do you use to explicitly kill a users session?
Are cookies client side or server side?
What are the new features added from ASP to ASP.NET?
How ViewstateMac works?
What are the security types in ASP/ASP.NET? Different Authentication modes?
Explain cookies with example.
How does the regular expression validator work? What are two situations when you might want to use one?
My website has around 100 aspx. Out of this, a certain 20 aspx files should be made available to the users only if they are logged in. How can I achieve this with the web.config file?
What is difference between session and cookies?
How does the service stream content?
Contrast OOP and SOA. What are tenets of each ?
Can master pages be nested?