Click here to Skip to main content
15,867,330 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPower BI Embedded : Cant doCross Filtering selecting multiple rows on a table visual pressing CTRL Pin
Member 155547063-Mar-22 17:21
Member 155547063-Mar-22 17:21 
Rant[REPOST] Power BI Embedded : Cant doCross Filtering selecting multiple rows on a table visual pressing CTRL Pin
Richard Deeming3-Mar-22 21:30
mveRichard Deeming3-Mar-22 21:30 
AnswerRe: Power BI Embedded : Cant doCross Filtering selecting multiple rows on a table visual pressing CTRL Pin
RedDk4-Mar-22 7:01
RedDk4-Mar-22 7:01 
QuestionASP .Net Core, Global HTML sanitization. Pin
GKP199228-Feb-22 17:46
professionalGKP199228-Feb-22 17:46 
AnswerRe: ASP .Net Core, Global HTML sanitization. Pin
Richard Deeming28-Feb-22 21:50
mveRichard Deeming28-Feb-22 21:50 
GeneralRe: ASP .Net Core, Global HTML sanitization. Pin
GKP199228-Feb-22 23:44
professionalGKP199228-Feb-22 23:44 
QuestionASP.NetCore Freeze the header of html table Pin
pkfox22-Feb-22 21:29
professionalpkfox22-Feb-22 21:29 
AnswerRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 0:32
mveRichard Deeming24-Feb-22 0:32 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 2:09
professionalpkfox24-Feb-22 2:09 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 21:33
mveRichard Deeming24-Feb-22 21:33 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 21:56
professionalpkfox24-Feb-22 21:56 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 22:37
mveRichard Deeming24-Feb-22 22:37 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 23:14
professionalpkfox24-Feb-22 23:14 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 23:23
mveRichard Deeming24-Feb-22 23:23 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 23:35
professionalpkfox24-Feb-22 23:35 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 23:52
mveRichard Deeming24-Feb-22 23:52 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox25-Feb-22 2:31
professionalpkfox25-Feb-22 2:31 
Questionselect data from two table of database based on one column of excel data which is uploaded . Pin
Member 1449552212-Feb-22 23:36
Member 1449552212-Feb-22 23:36 
AnswerRe: select data from two table of database based on one column of excel data which is uploaded . Pin
Richard Deeming14-Feb-22 3:46
mveRichard Deeming14-Feb-22 3:46 
AnswerRe: select data from two table of database based on one column of excel data which is uploaded . Pin
RedDk14-Feb-22 7:53
RedDk14-Feb-22 7:53 
QuestionAsp.Net Core. Sending requests with Postman. Pin
Kamil Kluska5-Feb-22 22:47
Kamil Kluska5-Feb-22 22:47 
I write in Postman this URL for Get method: https://localhost:7033/api/restaurant and I get 404 not found result. I don't know where is the problem. For https://localhostlocalhost:7033 it works, so it must be something wrong with [Route("api/restaurant")]

Here is the Controller code:

[Route("api/restaurant")]
public class RestaurantController : ControllerBase
{
private readonly RestaurantDbContext _dbContext;

public RestaurantController(RestaurantDbContext dbContext)
{
_dbContext = dbContext;
}

[HttpGet]
public ActionResult<ienumerable<restaurant>> GetAll()
{
var restaurants = _dbContext.Restaurants.ToList();

return Ok(restaurants);
}
}

and launchSettings file code:

}
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:8196",
"sslPort": 44311
}
},
"profiles": {
"RestaurantApp": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7033;http://localhost:5033",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

modified 6-Feb-22 6:13am.

AnswerRe: Asp.Net Core. Sending requests with Postman. Pin
Richard MacCutchan6-Feb-22 0:28
mveRichard MacCutchan6-Feb-22 0:28 
QuestionWhich one of the following codes has better performance in ASP.NET Core? Pin
Alex Dunlop4-Feb-22 21:05
Alex Dunlop4-Feb-22 21:05 
AnswerRe: Which one of the following codes has better performance in ASP.NET Core? Pin
Afzaal Ahmad Zeeshan5-Feb-22 3:27
professionalAfzaal Ahmad Zeeshan5-Feb-22 3:27 
QuestionWhat to use for a job scheduler for a .net app with plugins for each job Pin
jumbojs29-Jan-22 3:39
jumbojs29-Jan-22 3:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.