What is the use of Post-backUrl property?

 Posted by vishalneeraj-24503 on 12/24/2013 | Category: ASP.NET Interview questions | Views: 1958 | Points: 40
Answer:

PostbackUrl property is used to work
with Cross-page posting i.e. to get
previous page values.It's used in Button,
Link-Button,Image-button and so on.

In the postbackurl,we have to supply path of another page hich will be treated as Destination page.

<asp:Button ID="Button1" runat="server" Text="Button" PostBackUrl="~/frm_employee_master.aspx" />

After clicking on Button1,page will redirect to employee master page.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response