I have the following code :
@Html.ActionLink(\"Hello \" + User.Identity.GetUserName() + \"!\", \"Manage\", \"Account\", routeValues: null, htmlAttributes: new
If i understand correctly,you want to show the text inside your link without an achor tag, but with your html attributes (title attributes)
title
Try this
Hello @User.Identity.GetUserName() !