This is how I got an AspNetUser Id and displayed it on my home page
I placed the following code in my HomeController Index() method
ViewBag.userId = User.Identity.GetUserId();
In the view page just call
ViewBag.userId
Run the project and you will be able to see your userId