Click here to Skip to main content
15,889,345 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: To display data of multiple tables Pin
Kornfeld Eliyahu Peter10-Nov-14 0:20
professionalKornfeld Eliyahu Peter10-Nov-14 0:20 
AnswerRe: To display data of multiple tables Pin
Shweta N Mishra11-Nov-14 22:39
professionalShweta N Mishra11-Nov-14 22:39 
AnswerRe: To display data of multiple tables Pin
Dusara Maulik12-Nov-14 2:52
Dusara Maulik12-Nov-14 2:52 
QuestionTo display column in descending order in asp.net gridview. Pin
Member 111616259-Nov-14 3:59
Member 111616259-Nov-14 3:59 
AnswerRe: To display column in descending order in asp.net gridview. Pin
Kornfeld Eliyahu Peter10-Nov-14 0:17
professionalKornfeld Eliyahu Peter10-Nov-14 0:17 
QuestionRegarding IsPostBack in asp.net. Pin
Member 111616257-Nov-14 22:33
Member 111616257-Nov-14 22:33 
AnswerRe: Regarding IsPostBack in asp.net. Pin
Peter Leow7-Nov-14 23:10
professionalPeter Leow7-Nov-14 23:10 
AnswerRe: Regarding IsPostBack in asp.net. Pin
jkirkerx8-Nov-14 13:15
professionaljkirkerx8-Nov-14 13:15 
To put it simply

A web page uses the HTTP Protocol to a web server to receive and send HTML
http://www.w3schools.com/tags/ref_httpmethods.asp[^]

So when you request a webpage, the HTTP protocol calls that
GET

When you fill out a form, you have to send the changed page back to the server, so that is called
POST

When using Page.IsPostback
You are saying, if the page is posting back to the server.
eg. POST
Submitting a form, a Button Click and the code that fires when the button clicks
A dropdown list item is selected.

Or you are saying, If the page is not posting back to the server.
eg. GET
The form is loading for the first time

Example:

When you create a form, you create the HTML such as empty textboxes.
In Page Load, you can populate the empty textboxes with values
So in Page Load
If Not Page.IsPostback then
 //Fill in the textboxes
End if

Questionhi every body after long tome i am using Asp.NEt 2010 but when i define class on page then it give error------ Pin
Piyush Vardhan Singh7-Nov-14 19:30
Piyush Vardhan Singh7-Nov-14 19:30 
QuestionTo display column in descending order in asp.net gridview. Pin
Member 111616257-Nov-14 17:39
Member 111616257-Nov-14 17:39 
AnswerRe: To display column in descending order in asp.net gridview. Pin
Dusara Maulik12-Nov-14 3:00
Dusara Maulik12-Nov-14 3:00 
QuestionError when upgrading project .net Framework from 3.5 to 4.5 Pin
pmcm7-Nov-14 4:43
pmcm7-Nov-14 4:43 
AnswerRe: Error when upgrading project .net Framework from 3.5 to 4.5 Pin
jkirkerx7-Nov-14 7:18
professionaljkirkerx7-Nov-14 7:18 
QuestionHow to create Custom Project Template in ASP.Net Pin
meeram395-Nov-14 20:07
professionalmeeram395-Nov-14 20:07 
AnswerRe: How to create Custom Project Template in ASP.Net Pin
Richard MacCutchan5-Nov-14 22:32
mveRichard MacCutchan5-Nov-14 22:32 
Questionsend data between ASP.NET Pages Pin
Member 111107675-Nov-14 20:00
Member 111107675-Nov-14 20:00 
AnswerRe: send data between ASP.NET Pages Pin
ZurdoDev6-Nov-14 2:09
professionalZurdoDev6-Nov-14 2:09 
GeneralRe: send data between ASP.NET Pages Pin
shaluIT8-Nov-14 14:27
shaluIT8-Nov-14 14:27 
QuestionCorrectly displaying styled label? Pin
Member 87616675-Nov-14 12:09
Member 87616675-Nov-14 12:09 
AnswerRe: Correctly displaying styled label? Pin
Peter Leow5-Nov-14 14:24
professionalPeter Leow5-Nov-14 14:24 
GeneralRe: Correctly displaying styled label? Pin
Member 87616675-Nov-14 14:39
Member 87616675-Nov-14 14:39 
AnswerRe: Correctly displaying styled label? Pin
Peter Leow5-Nov-14 14:55
professionalPeter Leow5-Nov-14 14:55 
GeneralRe: Correctly displaying styled label? Pin
Member 87616675-Nov-14 15:03
Member 87616675-Nov-14 15:03 
AnswerRe: Correctly displaying styled label? Pin
jkirkerx6-Nov-14 7:14
professionaljkirkerx6-Nov-14 7:14 
GeneralRe: Correctly displaying styled label? Pin
Member 87616676-Nov-14 7:54
Member 87616676-Nov-14 7:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.