On page load, the side menu is currently visible as shown in the screenshot. How can I set it so that the side menu opens only after the page has fully loaded?
I want to use two blobs within the project. One should connect directly to the database, and the other should be set up as a file system. How can I do this?
Hello, I've implemented Hangfire authorization, but even though I'm logged in, currentUser is coming back as null. What could be the reason for this?
Hello, When I try to upload a 23 MB file, I receive a Request Entity Too Large error. I've tried to increase the file size in the config settings, but it didn't work, and I'm still getting the same error. Can you help?
Hello, After logging in, I bookmark the link in the web browser. After some time, when I try to log in again using that bookmark, it gives a 400 error. How can we resolve this? Can we redirect directly to the dashboard or another page?
Can the end user customize column placements, remove columns, or adjust column lengths in Blazorise DataGrid interface? Can the DataGrid be customized by the end user?
<div class="wpo-login-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<form class="wpo-accountWrapper" method="post" asp-page-handler="SendEmail">
<div class="wpo-accountInfo">
<div class="image">
<img src="assets/images/Catalog.png" alt="">
</div>
</div>
<div class="wpo-accountForm form-style">
<div class="fromTitle">
<h2>@L["Catalog"]</h2>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-12">
<abp-input asp-for="@Model.EmailAddress" />
</div>
<div class="col-lg-12 col-md-12 col-12">
<abp-input asp-for="@Model.PhoneNumber" />
</div>
<div class="col-lg-12 col-md-12 col-12">
<abp-input asp-for="@Model.Name" />
</div>
<div class="col-lg-12 col-md-12 col-12">
<abp-input asp-for="@Model.CompanyName" />
</div>
<div class="mb-3">
<div class="d-grid gap-2">
<!-- Buton tipini 'submit' olarak değiştirin -->
<button type="submit">@L["SendMessage"]</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
public class CatalogModel : ObiyosisPublicPageModel
{
[BindProperty]
public CatalogViewModel Model { get; set; }
public void OnGet()
{
}
public void OnPostSendEmail()
{
}
}
public class CatalogViewModel
{
[Required]
[Display(Name = "EmailAddress")]
[Placeholder("YourEmailAddress")]
public string EmailAddress { get; set; }
[Required]
[Display(Name = "PhoneNumber")]
[Placeholder("YourPhoneNumber")]
public string PhoneNumber { get; set; }
[Required]
[Display(Name = "NameAndSurname")]
[Placeholder("YourFullName")]
public string Name { get; set; }
[Required]
[Display(Name = "CompanyName")]
[Placeholder("CompanyName")]
public string CompanyName { get; set; }
[HiddenInput]
public string RecaptchaToken { get; set; }
}
I am trying to post from the form above, but it's not hitting the breakpoint in the cshtml.cs file. How can I do it?I am trying to post from the form above, but it's not hitting the breakpoint in the cshtml.cs file. How can I do it?I am trying to post from the form above, but it's not hitting the breakpoint in the cshtml.cs file. How can I do it?
Hi, I want to establish connections to two separate databases (Oracle and MSSQL). When trying to connect to the Oracle database, I'm encountering an error similar to the one below: 'System.ArgumentException: 'Server' is an invalid connection string attribute.' How can I resolve this?
https://support.abp.io/QA/Questions/5792/Token-Create Hello,
In the previous link, I asked how to make requests from Project A's frontend to Project B's API through a shared authentication server. Now, I'd like to know how to make requests from the backend of Project A to the backend of Project B.