Search results for query: *

  • Users: jay8anks
  • Content: Threads
  • Order by date
  1. J

    Sorting a gridview client side

    OK, so probably not the best use of my time today, but I whipped this out: https://iron.management/mysqltohtml.aspx It almost works, and some of the code isn't terrible. The goal was, type in a mysql table name and hit "Go". You get a field list of the table. Map each field to your desired...
  2. J

    Sql command parameters

    Stupid question, but I have never been able to find an answer to this. When I first started doing Asp.Net in C# or VB, all the examples to add SQL command parameters look like: cmd.Parameters.AddWithValue("@Id", rowId); When going back through my code, I sometimes find I did this...
  3. J

    Java design question

    I'm converting a java back-end to a .net core back-end. Finally starting to kind of get a little more comfortable with this, at least. I have a question on what exactly the purpose of this is. From: ecommerce-backend/UserCreateDto.java at master · webtutsplus/ecommerce-backend public class...
  4. J

    CORS

    So, in all of my years of messing with this stuff, I can't think of anything that has made me waste more time than CORS...or been more irritating. I got so tired of it, I have pluggins on Firefox and Chrome that are supposed to bypass CORS, and they aren't working. I absolutely have traced...
  5. J

    JWT token/claims in controller.

    So, just a general question. From what I have read, it looks like you can add variables to a JWT token. From a controller, how would you go about reading the variable? I guess I am having a hard time understanding the claims vs. token aspects here. Here is what I am doing. Generate user token...
  6. J

    pagination w/ Dapper (Tabulator)

    I've gotten a WebApi to work as the backend for Tabulator. The backend is C# with a repository pattern, using Dapper. I've got the progressive loading working, but I'm kind of unsure how to fully get the page count to work. I have some ideas, but I'm not sure if they would actually be the best...
Back
Top Bottom