V3NG3ANC3
V3NG3ANC3
CC#
Created by V3NG3ANC3 on 10/23/2024 in #help
Changing the default css for Identity pages in a Blazor Server app
Is it possible to change the default css for the Identity pages in a Blazor server app? I'm pretty new to Blazor, coming from Razor, I'm not sure why this is so complicated?
4 replies
CC#
Created by V3NG3ANC3 on 11/7/2022 in #help
remember me functionality in .net 6 razor pages identity
I'm working on a .net 6 razor page Web application using Microsoft identity login Unfortunately I can't seem to get the remember me functionality to work, it seems to sign me out when I close the page (live not debug) and require a sign in when revisiting the page
3 replies
CC#
Created by V3NG3ANC3 on 10/29/2022 in #help
secure API keys in a .Net core Web app hosted on linux server
I've currently got a .Net Web application that I'm hosting on a Linux server. It's also using multiple API keys, which I'm currently using inside the project, how can I secure these API keys inside of Linux so they're not attached to the project files?
5 replies
CC#
Created by V3NG3ANC3 on 10/13/2022 in #help
Published project via File System not updating changes
I'm currently publishing my web app to a linux vps, I've had to make a few changes but, when I publish the changes and transfew them via ftp, the changes have not been made, what could be causing this?
4 replies
CC#
Created by V3NG3ANC3 on 10/12/2022 in #help
Newly hosted .net web app (Linux VPS) not accessing MySqlDatabase
I've just published a .Net web application to a linux VPS, however for some reason, when loading pages that require the database, the website is crashing. I know this is likely due to my database not being connected properly. It works fine on my local machine, just not on the Linux VPS. Any help would be greatly appreciated! Here is my appsettings.json (edited out sensitive info):
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Persist Security Info=False;Server=sql1.hosting.net;User ID=Website;Password=Password;Initial Catalog=myDatabase;MultipleActiveResultSets=true",
}
}
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Persist Security Info=False;Server=sql1.hosting.net;User ID=Website;Password=Password;Initial Catalog=myDatabase;MultipleActiveResultSets=true",
}
}
6 replies