Solvi Documentation > General > Other General Questions
About Solvi
Installation
Table or Grid
CSS and JS
General
Resources
folder./Views/Shared/_Footer.cshtml
Access your database, right click on it and click “New Query”
Run this query: select * from emailtemplate
You can refer to the Body of the email template to prepare your email template. Then, run this query to update the emailtemplate:
Update EmailTemplate set Body='YourNewEmailTemplate' where Id = 'TheId'
Access your database, right click on it and click “New Query”
Run this query: select * from emailtemplate
You can refer to the Body of the email template to prepare your email template. Then, run this query:
insert into EmailTemplate (Id,Subject,Body,Type,IsDeleted)
values(newid(),'TheSubject','TheBody','TheType',0)
appsettings.json
“ConfirmEmailToLogin”
to true
if you want to enable it“ConfirmEmailToLogin”
to false
if you want to disable itAccess your database, right click on it and click “New Query”
Run this query:
insert into AspNetRoles (Id,Name,NormalizedName) values (NEWID(),'MyNewRole','MYNEWROLE')
ViewBag.Avatar
from any view pageViewBag.UserRoles
from any view pageSetup once here: T/Models/UserProfilePictureActionFilter.cs
and usable in any view page.
/Views/Shared/_LoginPartial.cshtml
/Views/Shared/_Table.cshtml
/wwwroot/js/auratheme.table.js
.CTRL + F
to search for -${getCurrentDateTimeForFileName()}
.-${getCurrentDateTimeForFileName()}
portion of the code.You can call the following JavaScript functions to display the bootstrap toast. Their definitions are in /wwwroot/js/main.js