skip to Main Content

Asp.net – Trying to access Text property from ASP:Textbox

I have a apsx with the following code: <div class="form-group col-6 mx-auto"> <asp:TextBox CssClass="form-control" name="username_box" ID="username_box" runat="server" placeholder="Username" TextMode="SingleLine"></asp:TextBox> <br /> </div> <div class="form-group col-6 mx-auto"> <asp:TextBox CssClass="form-control" ID="password_box" runat="server" placeholder="Password" TextMode="Password"> </asp:TextBox> <br /> </div> <div class="form-group d-grid gap-2…

VIEW QUESTION

ASP.NET Core 3.1 Images Compress

Is there any free and reliable way to compress image files (.jpg/.png) and also create thumbnails in ASP.NET Core 3.1 MVC? I tried Bitmap's functions but they throw exceptions like 'System.Drawing.Common is not supported on this platform'.

VIEW QUESTION
Back To Top
Search