You put one button on your page. Write the below code in page load event to change the text of your label
If Page.Ispostback then
lable1.text = "postback done on button click"
End If
Now you click on button. it will submit the page on server and write the above text on your label.