public static CreateAjaxRequest(UrlName,UrlState){
// history.pushState('game','Game',UrlState);
$(document).ready(function () {
$.ajax({
url: UrlName,
type:'GET',
dataType:'text',
success:function (response) {
console.log(response);
$('body').html(response);
}
})
});
}