Postback Request of ASP.NET Controls are taking too much time

I have created an asp.net website http://www.oureasymart.com which is working fine In localhost. but after hosting it to godaddy when an asp.net control like button is clicked then it is taking too much time around 1 minute to perform its operation. This problem is for every asp.net control of each page.
I think there is no issue with code behind or click event because I tried a simple Response.Redirect() method to move to next page on click of that button but still it is taking same time. Also I tried to call same method with the help of Jquery Ajax and it is working fine. I also enabled tracing in which I checked there is no event which is taking even 1 second. Please have a look at the code and screenshot of trace info and suggest what may be the issue.
TRACE INFO : https://drive.google.com/file/d/19Cl6wpe_Y20FCzxI9d0bUvj8BdaUdgjR/view?usp=drivesdk

ASP.NET forum app: obtaining the answer with most likes

We are building a forum type web application, and we are tring to make the answers with most likes (and most dislikes) look different. The Answer entity has a Reactions property (list of reactions) that include likes and dislikes (those are differentiated with a boolean property, true for like, false for dislike). Is there a way to obtain the answer with most likes, and the answer with most dislikes, with a LINQ query directly? or we have to make a method that solves it?

How to create identity user based on claims prinicpals

I am using asp.net mvc with work/school accounts authentication. Currently I’m trying to implement identity into to the user process. Here is my ApplicationUser class: public class ApplicationUser: IdentityUser { public ICollection<Semester> Semesters { get; set; } } So far, identity works just fine, there is just one problem. When I log into the app … Read more