Base solution for your next web application

Activities of "alper"

It throws the below exception when run in Docker

ABP-LIC-0008 - License check failed for 'Volo.Abp.Identity.Pro.HttpApi-v2.1.1.0'. You need to log in using the command `abp login <username>`. For more information, contact to [email protected].

I'll show you how to add a new response header in AspNet Zero.

Note that if you want to add a request header in Angular like Pragma or Expires you can create a new HttpInterceptor. See the existing headers that are automatically being added to the request by the abp-ng2-module. https://github.com/aspnetboilerplate/abp-ng2-module/blob/d30ae5335e03e5c6d3e7858932f195376be91e6d/src/abpHttpInterceptor.ts#L239

Let's add Cache-Control header to all server responses! Create a new middleware for AspNet Core as below: Create a new class and name it ZeroSecurityHeadersMiddleware

ZeroSecurityHeadersMiddleware.cs

public class ZeroSecurityHeadersMiddleware
    {
        private readonly RequestDelegate _next;

        public ZeroSecurityHeadersMiddleware(RequestDelegate next)
        {
            _next = next;
        }

        public async Task Invoke(HttpContext httpContext)
        {
            AddHeaderIfNotExists(httpContext, "Cache-Control", "no-cache");

            await _next.Invoke(httpContext);
        }

        private static void AddHeaderIfNotExists(HttpContext context, string key, string value)
        {
            if (!context.Response.Headers.ContainsKey(key))
            {
                context.Response.Headers.Add(key, value);
            }
        }
    }

Use this middleware in the Startup.cs after UseAbp().

Startup.cs

public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory)
        {
            //Initializes ABP framework.
            app.UseAbp(options =>
            {
                options.UseAbpRequestLocalization = false; 
            });

            app.UseMiddleware<ZeroSecurityHeadersMiddleware>();
            
           //...
}

Hi guys,

This website uses Gravatar for your profile images. If you want to set an avatar, just visit Gravatar.com with the email that you used for AspNet Zero signup. Upload your image to Gravatar.com, and after 5minutes you'll see your avatar here in this website.

https://en.gravatar.com/support/activating-your-account/


<br> <br> For your Gravatar to work properly, we'll first need you to provide us with an image for your profile. Follow these steps to upload that image and prepare it for use with your account. Login at Gravatar.com using your WordPress.com account by clicking the button at the top-right of the page. Once you are logged in, click on the Add an Image link at the top of the page. We'll ask you where you'd like to source this image. Click My computer’s hard drive. Now we'll ask you to direct the uploader to the image in question. Click Choose File. Locate the image on your computer and select it using the button that appears for your operating system (which will usually say Choose or Open). You'll see the filename of the image appear in the uploader. Click Next to upload the image to us. (NOTE: on Internet Explorer 9 and later, the image name may disappear when you click Next. This is normal and in most cases the image is being uploaded. Please be patient.) Now you can crop the image to only the portion of what you uploaded. Drag the cropper handles to select the part of the image you want. All images uploaded to Gravatar must be cropped as a square. Once you have the crop the way you want it, click Crop and Finish. Choose a rating for your image, making sure your image is appropriate to the rating. Keep in mind that many sites will only display G-rated Gravatars. Click on the rating you think is appropriate for your image. Your Gravatar image can then be added to your address. We'll ask you which one it should apply to right away, or you can wait and not assign it to any of your registered emails yet. Make your selection, and then you're done! You'll be taken to the My Gravatars screen, where you can continue to manage the images and email addresses that are assigned to your account.

Dear customer,

Welcome to our new support website! The old forum was phpBB which is hard for us to modify or add new features. This new support website is built by the AspNet Zero team. Since it is still in beta version, you might notice that some features are missing in the new website. As it is completely developed by the team, new features will be added over time. If you encounter any problems, you can contact to [email protected]. Please know that we are very passionate about making this framework great and helping you through this site. So please bear with us while we get this new website cool!

Thanks again for spending time with us. And also, thanks for your patience through this switch.

<span style="color:gray">AspNet</span><span style="color:red">Zero</span> Team

Question

<ins>underline row</ins>

  • liste-1

  • liste-2

  • satir-1

  • satir-2

this is a code block

this is a quote

[attachment=0:36250k8x]abp_screenshot.jpg[/attachment:36250k8x]

[attachment=1:36250k8x]Screenshot_1.jpg[/attachment:36250k8x]

<span style="color:#FF0000">colorized text</span>

font size change

this is a link

Smilies: :D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

This question is being asked frequently. As a note, deploying AspNet Zero web application to IIS is exactly the same as deploying any regular AspNet application to IIS. Fellows can check out the Microsoft official IIS host and deploy doc; <a class="postlink" href="https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/iis">https://docs.microsoft.com/en-us/aspnet ... deploy/iis</a>

Showing 1 to 6 of 6 entries