Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "huntethan89"

Thanks a lot.

Here is my Final Code:

  PasswordHasher pwd = new PasswordHasher();
  var password_Hast_To_Verify = "ABLLEjWGN2lTfbNdttIBLgu1hEYilCX06CQ9NdejQUsfdrlJZl8f0I9gWbfUGQUFUA==";
  var result = pwd.VerifyHashedPassword(password_Hast_To_Verify, "123qwe");

Is the application also shutdown? - our application is running on IIS, and also hosting server is working properly. How can we check that application is shut down or not.

I am attaching the logs file as png as i didn't find attach file option. Please download and save as txt format.

Thanks.

Thanks for your kind reply.

  • What is your product version?
    • 6.9.0.0
  • What is your product type (Angular or MVC)?
    • MVC
  • What is product framework type (.net framework or .net core)?
    • .net framework

Application logs as below

Let me know for info.

Dear @ismcagdas

Issue has been created on github as advised. please check https://github.com/aspnetzero/aspnet-zero/issues/697

Thanks

Hi,

Following are the two tables :-

table1 -

 [Table("Products")]
    public class Entity_Product : FullAuditedEntity
    {
        public const int MaxLength_Name = 50;

        [MaxLength(MaxLength_Name)]
        public virtual string Name { get; set; }

        [ForeignKey("Admin_Site_FK")]
        public Entity_Admin_Site Entity_Admin_Site { get; set; }
        public virtual int Admin_Site_FK { get; set; }

        [ForeignKey("Product_Unit_FK")]
        public Entity_Product_Unit Entity_Product_Unit { get; set; }
        public virtual int Product_Unit_FK { get; set; }
        public virtual int Withdrawl { get; set; }
        public virtual bool Fixed_Dosage { get; set; }
        public virtual int Base_Weight { get; set; }
        public virtual float Unit_Base_Weight { get; set; }
        public virtual int Default_Duration { get; set; }
        public virtual int PTI { get; set; }
        public virtual float Cost { get; set; }
        public virtual bool Single_Use { get; set; }
        public virtual bool Treatment { get; set; }

        public virtual int? TenantId { get; set; }
        public virtual bool IsActive { get; set; }

        // Navigation Properties
        public List<Entity_Product_Pricing> Entity_Product_Pricing { get; set; }

    }

table2-

    [Table("Product_Pricing")]
    public class Entity_Product_Pricing : FullAuditedEntity
    {
        [ForeignKey("Product_Id_FK")]
        public Entity_Product Entity_Product { get; set; }
        public virtual int? Product_Id_FK { get; set; }


        [ForeignKey("Configuration_Detail_Id_FK")]
        public Entity_Configuration_Detail Entity_Configuration_Detail { get; set; }
        public virtual int? Configuration_Detail_Id_FK { get; set; }

        public float Price { get; set; }
    }

Following are the Dtos :-

Dto of table1 :-

    [AutoMapFrom(typeof(Entity_Product))]
    [AutoMapTo(typeof(Entity_Product))]
    public class CreateEditProductsInput
    {
        public int? Id { get; set; }

        [Required]
        [Display(Name = "Product Name")]
        [MaxLength(Entity_Product.MaxLength_Name)]
        public string Name { get; set; }

        [Required(ErrorMessage = "The Admin Site field is required.")]
        [Display(Name = "Admin Site")]
        public int Admin_Site_FK { get; set; }

        [Required(ErrorMessage = "The Product Unit field is required.")]
        [Display(Name = "Product Unit")]
        public int Product_Unit_FK { get; set; }

        [Required(ErrorMessage = "The Withdrawal field is required.")]
        [Display(Name = "Product Unit")]
        public int? Withdrawl { get; set; }
        public bool Fixed_Dosage { get; set; }
        public int? Base_Weight { get; set; }

        [Required(ErrorMessage = "The Units/Base Weight field is required.")]
        [Display(Name = "Product Unit")]
        public float? Unit_Base_Weight { get; set; }
        public int? Default_Duration { get; set; }
        public int? PTI { get; set; }
        public float Cost { get; set; }
        public bool Single_Use { get; set; }
        public bool Treatment { get; set; }
        public int? TenantId { get; set; }

        // Navigation Properties
        public List<CreateEditProductPricingInput> Entity_Product_Pricing { get; set; }
    }

Dto of table 2 :-

    [AutoMapTo(typeof(Entity_Product_Pricing))]
    [AutoMapFrom(typeof(Entity_Product_Pricing))]
    public class CreateEditProductPricingOutput: CreateEditProductPricingInput
    {
        public long? CreatorUserId { get; set; }
        public DateTime CreationTime { get; set; }
        public long? LastModifierUserId { get; set; }
        public DateTime? LastModificationTime { get; set; }
       
    }

Thanks

No, I never used these scripts (npm run build) for production in other projects. Can you please provide me steps how to build scripts for production ?

Yes

Hi,

I found something which is giving issue. The following code is not working on production application.

This code is from Mpa/views/layout/_layout.cshtml.

And this is MpaBundleConfig.cs code .

Can you please give any help on this.

Thanks.

I tried setting this. but it doesn't work.

Hi,

My Product version is 7.2.0.0 and i am using ASP.NET MVC & jquery (.net framework). I want a page inside MPA folder which i want to access without login and want to use layout page also. How can i achieve this?

Thanks

Showing 41 to 50 of 122 entries