私は formauthentication を使用しており、user.identity.name として使用しているメールは、代わりに一意の登録 ID を使用できるように変更するにはどうすればよいですか?
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1,model.Email, DateTime.Now, cookieExpiration, true,model.Email);
model.Email はユーザーが持っている電子メールであり、代わりにmodel.RegistrationIDを配置したい文字列パラメーターです。