All Questions
440 questions
0
votes
0
answers
28
views
invalid_grant" error on a specific server oAuth2
I had set Token timeout and logintimeout in web.config like below
<add key="Token-TimeOut" value="1" />
<add key="Login-TimeOut" value="60" />
the ...
0
votes
1
answer
57
views
ASP.NET Core - Change Url of Product Details when select Color
I am working on E-commerce Laptop. I want when the user chooses another color in the select drop-down, it will redirect to the product of that color.
I am using JavaScript to redirect the URL, here ...
1
vote
0
answers
34
views
How to disable a list of checkboxes (ListBoxFor) using a second (single) checkbox
I have a listbox with a bunch of race/ethnicity options in it that need to be disabled when you click a specific option (in this case, not reported). I have code to replace the existing list of ...
0
votes
0
answers
71
views
Highcharts tooltips disappearing in tabbed layout
I have a bunch of highcharts charts all over my website.
If they are all put on the same tab they all load the legend and the tooltips correctly.
But if they are on different tabs the tooltips ...
1
vote
0
answers
462
views
How to bind dynamic data with pie chart using jason ajax in MVC C#?
How to bind dynamic data with pie chart using jason ajax in c#
My requirement is to bind dynamic data with pie chart.
So using jason ajax I got the record from database using below code.
$(function () ...
1
vote
0
answers
37
views
jquery validation rules for corresponding radio button on checkbox checked
I have following models
public class Course
{
public int? id { get; set; }
public string? name { get; set; }
public string? tooltip { get; set; }
}
public class Department
{
...
-1
votes
1
answer
90
views
Jquery: How to move ajax post list data from action to other action successfully?
[Picture1](https://i.sstatic.net/HiIHU.png)
İ try to send with ajax table data. Data can pass successfully passing to action as a parameter.
But When i try to passed data to another action via ...
0
votes
0
answers
216
views
IP Cam live video feed using server end to front end C# MVC
Im making a c# mvc app and I have ip cam which is connected via a vpn to server pc. Ip cam is only available when the vpn is connected. Without the vpn i cant code it into view becasue the client end ...
0
votes
0
answers
43
views
Web Grid displays all data when you click the header link while in category, how do you make it stay in the current category list?
I have a web grid (MVC Razor) with Category buttons and even a category drop-down that basically does the same. When I press the category button, the web grid populates the category list, just like it ...
0
votes
1
answer
72
views
Get the value of the button chosen using J-Query from MVC Razor Page?
I have created a loop in an MVC Razor Page to create the number of buttons based on a category, but have not figured out how to get the value, which is a count number and the label of the button ...
0
votes
1
answer
65
views
How to remove an item from DropDownList If No is Selected on Bootstrap Modal?
Scenario:
User will select from a DropdownList.
Here is the Dropdown code:
@Html.DropDownList("ddlRequestMade", new List<SelectListItem>
{
...
0
votes
0
answers
121
views
How to optimise my partial view loading time? (C#, MVC, jQuery)
For this feature, I want the respective tour package details (partial view.cshtml) to load in the main view (view.cshtml) as I select the different options. The problem I am facing now is that, the ...
0
votes
3
answers
47
views
Jquery Append Parameter inside <a href='@Url.ActionLink()'></a>
I have the below code inside a Jquery function
$.each(array, function (index, value) {
var id1 = value.match(/\d+/);
$("#linksList").append("<li>&...
0
votes
0
answers
343
views
ClosedXML SaveAs() Not Returning File
Here is the method inside my controller:
[HttpGet]
public ActionResult Export()
{
//var svc = new Misc();
var dt = new DataTable();
dt.Columns.Add("Name&...
1
vote
0
answers
441
views
How to detect if a user is using a local ip, vpn or a public ip?
I am new to MVC. I am trying to create a landing page where the users may use it to open specific websites. I want to detect whether the user is accessing it through a local iPad or through a VPN or ...