Click here to Skip to main content
15,896,063 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPOST xml request to an API with feedback asp.net mvc Pin
MacroSss21-Oct-16 0:11
MacroSss21-Oct-16 0:11 
AnswerRe: POST xml request to an API with feedback asp.net mvc Pin
jkirkerx24-Oct-16 9:15
professionaljkirkerx24-Oct-16 9:15 
AnswerRe: POST xml request to an API with feedback asp.net mvc Pin
MacroSss26-Oct-16 1:23
MacroSss26-Oct-16 1:23 
GeneralRe: POST xml request to an API with feedback asp.net mvc Pin
MacroSss26-Oct-16 1:24
MacroSss26-Oct-16 1:24 
QuestionThere is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'SelectedClientList'. Pin
amioni20-Oct-16 1:43
amioni20-Oct-16 1:43 
AnswerRe: There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'SelectedClientList'. Pin
jkirkerx20-Oct-16 8:57
professionaljkirkerx20-Oct-16 8:57 
QuestionHow to save modal popup form into database/data table Pin
Bootzilla3319-Oct-16 10:47
Bootzilla3319-Oct-16 10:47 
AnswerRe: How to save modal popup form into database/data table Pin
Sahil Saini @ Software Developer19-Oct-16 19:23
professionalSahil Saini @ Software Developer19-Oct-16 19:23 
1. Create a jquery function on click event of the on save button.
2. Remove the data-dismiss attribute from the save button.
3. Start writing function in javascript =>
JavaScript
function Save()
{
var Employee = {  
fname: $("#fname").val(),
mname: $("#mname").val(),  
lname: $("#lname").val()
};  
$.ajax({

type:"post",
url:"write url of server method here",
data:JSON.stringify(Employee),
dataType:"json",
success:function(data){
alert("Data saved successfully !");
}
});

}

4. Create server method for save with class as parameter.public string Save(Employee emp).
5. Return the result from that method as string.
6. Get all records on pageload function, your grid will be updated.
7. Similarly for delete create a function and call on the click event of delete button.
Questioni want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:00
moj197817-Oct-16 9:00 
AnswerRe: i want fill 2 table with 1 click can I? Pin
Vincent Maverick Durano17-Oct-16 9:07
professionalVincent Maverick Durano17-Oct-16 9:07 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:13
moj197817-Oct-16 9:13 
GeneralRe: i want fill 2 table with 1 click can I? Pin
Vincent Maverick Durano17-Oct-16 9:17
professionalVincent Maverick Durano17-Oct-16 9:17 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:14
moj197817-Oct-16 9:14 
AnswerRe: i want fill 2 table with 1 click can I? Pin
Wendelius17-Oct-16 9:28
mentorWendelius17-Oct-16 9:28 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 10:28
moj197817-Oct-16 10:28 
GeneralRe: i want fill 2 table with 1 click can I? Pin
Wendelius17-Oct-16 17:05
mentorWendelius17-Oct-16 17:05 
QuestionPosting back part of a model - instead of using querystrings for filters - MVC. part of the model post back Pin
jkirkerx17-Oct-16 8:38
professionaljkirkerx17-Oct-16 8:38 
AnswerRe: Posting back part of a model - instead of using querystrings for filters - MVC. part of the model post back Pin
jkirkerx17-Oct-16 10:21
professionaljkirkerx17-Oct-16 10:21 
QuestionTracking Pin
sarwajeet singh16-Oct-16 23:42
sarwajeet singh16-Oct-16 23:42 
AnswerRe: Tracking Pin
Eddy Vluggen17-Oct-16 1:50
professionalEddy Vluggen17-Oct-16 1:50 
QuestionRe: Tracking Pin
ZurdoDev17-Oct-16 8:17
professionalZurdoDev17-Oct-16 8:17 
QuestionAnyone know how to create or seen a toggle switch with two big word/many letter selections Pin
Bootzilla3316-Oct-16 15:15
Bootzilla3316-Oct-16 15:15 
AnswerRe: Anyone know how to create or seen a toggle switch with two big word/many letter selections Pin
Richard Deeming17-Oct-16 1:52
mveRichard Deeming17-Oct-16 1:52 
Questionweb form generate html on separate pages Pin
dcof16-Oct-16 9:08
dcof16-Oct-16 9:08 
AnswerRe: web form generate html on separate pages Pin
ZurdoDev17-Oct-16 8:24
professionalZurdoDev17-Oct-16 8:24 

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.