employwise 0 Newbie Poster

To clear history using java script code just try following code.
<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"

If Len(Session("FirstTimeToPage")) > 0 then

Session("FirstTimeToPage") = ""
Response.Redirect "home.aspx"'home page
Response.End
End If


%>

employwise 0 Newbie Poster

For Bounce rate follow following steps:

a>Test your site with a group of users. Ask them to enter your site from specific pages. Get feedback based on their experiences.

b>Expose next steps. Give visitors actions to take if they are interested in the current page. Add links to more information at the bottom of the copy or within content.

employwise 0 Newbie Poster

ASP.NET MVC is a programming model.in that we design an application using three attributes.
1> Model: The model contains the core information for an application. This
includes the data and validation rules as well as data access and aggregation
logic.
2> View: The view encapsulates the presentation of the application, and in
ASP.NET is typically the HTML markup.
3> Controller: The controller contains the control-flow logic. It interacts with
the Model and Views to control the flow of information and execution of the
application.

employwise 0 Newbie Poster

PostBackUrl property of link button is use for specify the targeted web page url.the targeted web page will be a page where you want to post your form data like textbox,listbox etc.