Click here to Skip to main content
15,792,771 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
Member 245846715-Jan-20 16:17
Member 245846715-Jan-20 16:17 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
jkirkerx16-Jan-20 8:26
professionaljkirkerx16-Jan-20 8:26 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
Member 245846716-Jan-20 22:04
Member 245846716-Jan-20 22:04 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
jkirkerx17-Jan-20 7:55
professionaljkirkerx17-Jan-20 7:55 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
Richard Deeming16-Jan-20 2:33
mveRichard Deeming16-Jan-20 2:33 
JokeRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
ZurdoDev16-Jan-20 4:55
professionalZurdoDev16-Jan-20 4:55 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
jkirkerx16-Jan-20 8:34
professionaljkirkerx16-Jan-20 8:34 
Question.Net Core 2.2.4 - Getting IHostingEnvironment in Program.cs Main Pin
jkirkerx14-Jan-20 11:24
professionaljkirkerx14-Jan-20 11:24 
I know how to get it in Startup, but I wrote a class that seeds the database with values, and expanded it to write the product images to wwwroot from the database called SeedDatabase. I just need the wwwroot so I can write the images to the right place.

Guess I figured it out...
Amazing, had no idea this would work, well in development at least.
So I can request services from startup? That's my new question.
private static void SeedDatabase(IWebHost host, Settings appSettings, bool isDocker, string env)
{
    using (var scope = host.Services.CreateScope())
    {
        var services = scope.ServiceProvider;
        var logger = services.GetRequiredService<ILogger<Program>>();
        var environment = services.GetService<IHostingEnvironment>();
        logger.LogInformation("DbAuthConnection=" + appSettings.MongoDB.Connection);
        logger.LogInformation("DbAuthContainer=" + appSettings.MongoDB.Container);
        logger.LogInformation("Environment=" + env);

        try
        {
            DbInitializer.SeedData(appSettings, environment, isDocker);<br />
            logger.LogInformation("Seed DB Succeeded:" + DateTime.Now);

        }
        catch (Exception ex)
        {
            logger.LogError(ex, "Seed DB Failed on " + DateTime.Now + ":" + ex.Message);                    
        }
    }
}   
If it ain't broke don't fix it
Discover my world at jkirkerx.com

QuestionHtmlagilitypack -- I'm stuck Pin
Member 175325011-Jan-20 6:40
Member 175325011-Jan-20 6:40 
QuestionHow do I fix System.Net.Mail.SmtException: 'Cannot get IIS pickup directory' error? Pin
Member 1140330410-Jan-20 10:19
Member 1140330410-Jan-20 10:19 
AnswerRe: How do I fix System.Net.Mail.SmtException: 'Cannot get IIS pickup directory' error? Pin
Richard MacCutchan10-Jan-20 12:37
mveRichard MacCutchan10-Jan-20 12:37 
AnswerRe: How do I fix System.Net.Mail.SmtException: 'Cannot get IIS pickup directory' error? Pin
ZurdoDev11-Jan-20 10:03
professionalZurdoDev11-Jan-20 10:03 
QuestionHow do I fix 'object' does not contain a definition for 'Value'? Pin
Member 1140330410-Jan-20 9:27
Member 1140330410-Jan-20 9:27 
AnswerRe: How do I fix 'object' does not contain a definition for 'Value'? Pin
ZurdoDev10-Jan-20 10:09
professionalZurdoDev10-Jan-20 10:09 
QuestionWhy can't I login to the web even though the User and password are correct ? Pin
Member 24584679-Jan-20 22:43
Member 24584679-Jan-20 22:43 
AnswerRe: Why can't I login to the web even though the User and password are correct ? Pin
ZurdoDev10-Jan-20 2:00
professionalZurdoDev10-Jan-20 2:00 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
Member 245846714-Jan-20 17:19
Member 245846714-Jan-20 17:19 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
ZurdoDev14-Jan-20 17:52
professionalZurdoDev14-Jan-20 17:52 
AnswerRe: Why can't I login to the web even though the User and password are correct ? Pin
Richard Deeming10-Jan-20 3:32
mveRichard Deeming10-Jan-20 3:32 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
Member 245846714-Jan-20 17:24
Member 245846714-Jan-20 17:24 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
Richard Deeming15-Jan-20 1:25
mveRichard Deeming15-Jan-20 1:25 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
Member 245846716-Jan-20 21:23
Member 245846716-Jan-20 21:23 
GeneralRe: Why can't I login to the web even though the User and password are correct ? Pin
Richard Deeming17-Jan-20 1:30
mveRichard Deeming17-Jan-20 1:30 
QuestionHow do you have a DropDownList populated without default selected item? Pin
Member 114033049-Jan-20 7:07
Member 114033049-Jan-20 7:07 
AnswerRe: How do you have a DropDownList populated without default selected item? Pin
ZurdoDev9-Jan-20 7:40
professionalZurdoDev9-Jan-20 7:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.