Search results for query: *

  1. SaeedP

    Trouble on placing a map on the blazor server app

    Hi there, I'm looking to add a map to a Blazor Server page, but I'm encountering the following error: Status 500 The map library I'm using is openstreetMap. Here's the code I'm using: <!-- Using jsDelivr CDN --> <script...
  2. SaeedP

    Why do I get this Chrome console error

    Yes, you are right. Thanks a lot.
  3. SaeedP

    Why do I get this Chrome console error

    Do you mean that you wrote the same code that I wrote and the result was this?
  4. SaeedP

    Why do I get this Chrome console error

    But there is no js code in my app!
  5. SaeedP

    Why do I get this Chrome console error

    ...id="imageText" @bind="@ImageText" /> </div> <button @onclick="GenerateImage" type="button">Generate Image</button> </form> <div> @* Display the generated image if available *@ @if (generatedImageUrl != null) { <img src="@generatedImageUrl" alt="Generated...
  6. SaeedP

    Strange issue on label id

    .../> </div> <button @onclick="GenerateImage" type="button">Generate Image</button> </form> <div> @* Display the generated image if available *@ @if (generatedImageUrl != null) { <img src="@generatedImageUrl" alt="Generated...
  7. SaeedP

    Exception issue

    Hi, I'm encountering this exception while running my code. Can someone help me understand what it means and what could be causing it?
  8. SaeedP

    issue with the input tag

    I have seen that and tried a lot but I can't understand the expectations!
  9. SaeedP

    issue with the input tag

    When I run the code I just see a blank page! Here comes my code: @page "/" @using System.Net.Http @using System.Threading.Tasks @*@using Microsoft.AspNetCore.Components.Forms*@ @using System.IO <div> <h3>Index</h3> <InputFile OnChange="@HandleFileUpload" /> @*<input...
  10. SaeedP

    issue with the input tag

    Hello, I need to import an image in my Blazor web assembly app. I have tested and read a lot of content from the web and AI. But I don't know why none of my input tags are working! <InputFile @OnChange="HandleFileUpload" /> <input type="file" @onchange="HandleFileUpload" /> <input type="file"...
  11. SaeedP

    ML.net builder tutorial question

    Hello, I'm trying this tutorial: What is Model Builder and how does it work? - ML.NET but on this page: ML.NET Tutorial | Get started in 10 minutes | .NET When I press the brows button, nothing happens! Can you guide me? thanks,
  12. SaeedP

    problem with Microsoft ML

    Hello, This class is a logo builder project app. I have installed Microsoft ml but I still see a red line under Predict. I've tried many AI modes but still couldn't find what package should I install: using Microsoft.ML; namespace BlazorWasm_ML.net_Monica_Claude.Services { public class...
  13. SaeedP

    Problem with AI logo builder program

    I am not entirely certain as this is my first time utilizing this API.
  14. SaeedP

    Problem with AI logo builder program

    Hello, In these lines of code, I have tried to create a logo builder program using DeepAI API. It seems that the program works, but the received image is not clear. @page "/LogoBuilder" @layout EmptyLayout @inherits LayoutComponentBase <div> <h3>LogoBuilder</h3> <SaeedMenu />...
  15. SaeedP

    What is the process of adding an API to the most recent release of Blazor server?

    So why whilst I have installed DeepAI and imported it into my project still see a red line under the DeepAI? using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using DeepAI; namespace BlazorApp4.Data { public static class DeepAI {...
  16. SaeedP

    What is the process of adding an API to the most recent release of Blazor server?

    As I followed up and found out their C# API is for .net4.
  17. SaeedP

    What is the process of adding an API to the most recent release of Blazor server?

    I would like to integrate the Deep AI API into my project. Could you please guide me through the process?
  18. SaeedP

    What is the process of adding an API to the most recent release of Blazor server?

    Hello, What is the process for creating an instance of a class within a Blazor component and utilizing its methods? By "latest version," I am referring to the most recent release. thanks, Saeed
  19. SaeedP

    What is the process for creating an instance of a class within a Blazor component and utilizing its methods?

    Hello, My question is regarding Blazor service: In my app, I have a component: Logo-builder. razor @page "/logo-builder" @using BlazorApp_AI_1.Data @inject LogoBuiderService logoBuilderService <h1>Logo Builder</h1> <label for="text-input">Text:</label> <input type="text" id="text-input"...
  20. SaeedP

    Need help to understanding the code

    I don't understand its placement and meaning.
Back
Top Bottom