All Questions
7,473 questions
1
vote
1
answer
67
views
When AJAX POST to C# httpPost medthod hasProblem
When I using jquery Ajax POST method to controller like:
var data = {
ID: '1',
name: 'TEST',
}
$.ajax({
type: "POST",
data: JSON.stringify(data),
dataType: &...
0
votes
1
answer
54
views
Multiple actions were found that match the request for get in controller
I seem to be going around in circles and going into debug mode doesn't seem to help at all. Looking at the Controller and Model for Members, I can't see any duplicate signatures (code blocks below) ...
0
votes
0
answers
53
views
Search AutoSuggest Textbox working with Visual Studio but not working after upload in website
I want Auto suggestion when user Search anything in my website in TexBox1 it will auto suggest some text from my sql databse below TextBox1. I am using C# asp.net. Following code working in Visual ...
0
votes
1
answer
66
views
How to hide asp combobox according to selected asp combobox by javascript in asp.net
I have two asp combobox one with the name of cmb_stocktype while second with the name of cmb_tagno. Now, my question is that when I select cmb_stocktype with the value of WithStock then cmb_tagno ...
0
votes
1
answer
49
views
How to change from readonly to not readonly of input in ASP.NET Core
MODAL
<div class="modal fade" id="residentModal" tabindex="-1" role="dialog" aria-labelledby="residentModalLabel" aria-hidden="true">
...
0
votes
1
answer
89
views
Adding a RequiredFieldValidator causes the 'jquery' is not a valid script name. The name must end in '.js' error
I have a problem inside an asp net application where I get the 'jquery' is not a valid script name. The name must end in '.js' error when I try to add an asp:RequiredFieldValidator element inside an ...
1
vote
1
answer
47
views
How to prevent a clear data upon clicking new add address using button in ASP.Net Core
@model Registration
@{
ViewData["Title"] = "Register Page - Step Two";
}
<button type="button" class="btn btn-primary" onclick="addAddress()"&...
0
votes
2
answers
57
views
Ajax Returns MasterPage File In Response Instead Of Return From Method From Current Page
Ajax returns masterpage html instead of returns from my method.
Here is my client code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Page1.aspx.cs" Inherits=...
0
votes
0
answers
34
views
Can we parameterize jQuery ajax call for inserting data to database?
This is my simple code for inserting data to database and it's working fine. Table name is AccountMaster
function Insert() {
var Value = {};
Value.Id = $("[id*=hdnId]").val();
...
0
votes
0
answers
226
views
How to get value from editableSelect() by jquery in asp.net c#
I am trying to get the id of selected list item (html-editableSelect), but in the place of select Id value I am getting undefined alert.
Here is my aspx code
<select id="cmb_year" runat=&...
0
votes
0
answers
37
views
Filtering Data in DataTbale ASP.NET
enter image description here I have a problem with data filtration in the table. I would like the data in the filter list to remain intact for the applied filter and to be updated in the remaining ...
1
vote
0
answers
174
views
Dropzone and ASP.NET Image Uploader: Uploaded Image is blank and has Underscore Name and Larger Filesize
"I am developing an image uploader using Dropzone in ASP.NET. I am encountering an issue where, after clicking the submit button, the uploaded image file appearing in my directory is blank ...
0
votes
1
answer
87
views
How do you save a page by button click on page exit using javascript
I have tried just about everything i can think of to trigger a button which triggers the save page event on page exit yet it never fires. I want the event to fire whether the button is visible or not ...
0
votes
0
answers
71
views
exception error on server iis input string not in correct format
I work on asp.net MVC application . I get error input string not in correct format
i don't know what is the reason of this issue and which line give me this issue
on local pc issue not happen but on ...
0
votes
1
answer
56
views
How to use jQuery to assign value of Health Status to Hidden field?
I work on asp.net mvc I face issue i can't store value of health status on
hidden field using jQuery then pass hidden field value after get value to
Approve function when click agree button click .
on ...