Base solution for your next web application

Activities of "botcoredev"

I created a git repo first in azure devops, with an empty folder. Then try to create the pipeline, but it failled because there were no files in it. So, I clone repo to my local and then added the downloaded source code from Asp .Net Zero and created a pull request. After that "Restore, Build" were successfull, but yarn gave an error. So, after that, I ran yarn command in the root folder of .MVC project, then created the bundules and then pushed again. And then "Restore, Build, yarn" were successful. But I got a build error in "Npm Run Task".

my .sln is running successfully in local.

But i dont understand, why its not builing in the PIpeline.

Plz reply as soon as possible.

I want to add multiple pages for a CRUD operation. Not like modal popup. And I want to use mvc format. How can I achieve this. Because in your solution, One have to follow your steps. I just want to use the core mvc functionality and able to add pages in the menu bar.

What should I do? I am in hurry. Plz reply asap.

Yes I followed this link only. But instead of having a prior repo in git, I created a empty git repo in Azure devops and try to push the code after that.

Please suggest what should i do?

Ok can you please elaborate that. Because in my page I will be having Go-js templets. So I need a separate page for that.

Can you please suggest me something. Because then only I can move on to other tasks in my project. I am in a hurry. Please respond.

I want to re-use the same _ CreateOrEdit popup, which is used in index page of a table, on button click Edit Modal popup must be loaded in a custom page.

Please reply as soon as posible.

Thanks in advance.

Please answer quickly. I am in a tight schedule.

I want to integrate Azure KeyVault service into my solution to store important secret in keyvault.

Can anyone explain how to do this?

Please reply soon.

Thanks in advance.

Hi,

Requirement : Login with Microsoft/Azure AD Users as an option in Login page. **Trails: ******

  1. Using App Registration in Azure Active Directory.https://docs.microsoft.com/en-us/azure/app-service/configure-authentication-provider-microsoft
  2. Using Open ID Connect. https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Infrastructure-Core-Mvc-Identity-Server4-Integration

Please help me for sign in to Azure AD/ Microsoft.

Thanks in Advance.

Yes, I am using Asp .Net Core MVC with JQuery.

I configured the Identitysrever config along with openID Connect config.

After making openID=> IsEnabled "true", I am getting the "openId" button in login page. On click its not redirecting to O365 login page as it supposed to be.

As checked, the (href="#") is like this for openIdConnect button.

I configured all the details for OpenId in appsettings.json. According to documents it is supposed to working.

Here is my configs:

"OpenId": { "IsEnabled": "true", "Authority": "https://login.microsoftonline.com/xxxxxxxxxTenentIDxxxxxxxx", "LoginUrl": "https://login.microsoftonline.com/xxxxxxxxxTenentIDxxxxxxxx/oauth2/authorize", "ClientId": "xxxxxxxxxClientIDxxxxxxxx", "ClientSecret": "xxxxxxxxxClientSecretxxxxxxxx", "ValidateIssuer": "false", "ClaimsMapping": [ { "claim": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier", "key": "http://schemas.microsoft.com/identity/claims/objectidentifier" } ] }

Here is the portion in Login.cshtml, where "openidconnect" button is getting rendered.

            @foreach (var p in loginProviders)
            {
                <a href="#" class="btn btn-outline-secondary kt-btn btn-sm">
                    <i class="fab fa-@getSocialIconClass(p.DisplayName)"></i>
                    @p.DisplayName
                </a>
            }
            

What am I doing wrong, can you please help me solve this. Because its very important feature, which needs to be integrated for our product.

Thanks in advance.

Showing 1 to 10 of 18 entries