Castle.MonoRail.ActiveRecordScaffold.Helpers.PresentationHelper.LinkToBack C# (CSharp) Method

LinkToBack() public method

public LinkToBack ( String text, IDictionary attributes ) : String
text String
attributes IDictionary
return String
		public String LinkToBack(String text, IDictionary attributes)
		{
			return String.Format( "<a href=\"javascript:history.go(-1);\" {1}>{0}</a>", 
			                      text, GetAttributes(attributes) );
		}