Search results for query: *

  1. D

    Looking for way to access URL results of get method call

    Navigation Manager was the trick. THANK YOU.
  2. D

    Looking for way to access URL results of get method call

    This is the page that it calls, where I want to do the parsing and then send on to the code that queries the database: @using System; @using System.Runtime; @using System.Collections; @using Microsoft.AspNetCore.Http.Extensions; @using System.Web; @using System.Net.Http; @using...
  3. D

    Looking for way to access URL results of get method call

    This is the code for the search form @page "/fetchdataSearch" @namespace BlazorServerApp.Data @inject DataAccessService ButtonResp <PageTitle>People Search</PageTitle> <h2>People Search</h2> <hr size=25 /> <form action="https://localhost:7190/FetchDataEdit" method="get">...
  4. D

    Looking for way to access URL results of get method call

    The URL is generated by the GET method on the search form. It puts a name/value pair in the URL for each form field. That is what I need to access/intercept. I'm new at this so I thought Blazor was part of ASP.NET. I didn't know there was a demarcation. If you could explain that comment, it...
  5. D

    Looking for way to access URL results of get method call

    I have a search form, and the submit button calls another web page with results that were entered. I need to grab that string from the url request and parse it to create a where statement to send to my database. I've looked online for an answer and keep reaching dead ends. At one time there...
  6. D

    NullReferenceException: Object reference not set to an instance of an object.

    Was able to recover through a combination of Git and editing.
  7. D

    NullReferenceException: Object reference not set to an instance of an object.

    I'm using GitHub, but am new to hit and having a problem get VS to open up my GitHub stored version.
  8. D

    NullReferenceException: Object reference not set to an instance of an object.

    This code is blowing up on me, on the last line. No other errors thrown. This is some generated code from a Blazor Server Side app. I can only assume the problem is elsewhere, but I don't know how to find it. This was running, then I was experimenting around with trying to add CSS code into...
  9. D

    Question Getting error about needing GetEnumerator, but I'm using foreach

    Sorry, I misinterpreted your response.
  10. D

    Question Getting error about needing GetEnumerator, but I'm using foreach

    Thanks for your response. My issue is, I got this to work before without defining GetEnumerator, and I'm reading that rarely should one have to define it, that foreach handles all the details.
  11. D

    Question Getting error about needing GetEnumerator, but I'm using foreach

    Hi. Trying to teach myself some Blazor coding, and I'm having a generally rough time, with some success here and there. I could really use a hand here. I wrote one app that was able to talk to the AdventureWorks db, and spit back some addresses on the screen. I used the "foreach" method to...
  12. D

    Question Parsing XML (DTSX file) into row/column database format

    I'm trying to find the easiest way I can parse an SSIS dtsx file into some database tables. I'm trying to write a tool that will allow easier debugging of SSIS packages. Out of frustration, I just started writing my own text based parser, but has to be something better. I only know a little...
Back
Top Bottom