Click here to Skip to main content
15,903,033 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
steve_949661320-Nov-12 3:36
professionalsteve_949661320-Nov-12 3:36 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
Eddy Vluggen20-Nov-12 4:33
professionalEddy Vluggen20-Nov-12 4:33 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
steve_949661320-Nov-12 5:23
professionalsteve_949661320-Nov-12 5:23 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
Eddy Vluggen20-Nov-12 9:21
professionalEddy Vluggen20-Nov-12 9:21 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
steve_949661320-Nov-12 21:25
professionalsteve_949661320-Nov-12 21:25 
GeneralRe: [VB.NET 2008] Change form from separate thread (Windows CE) Pin
Eddy Vluggen21-Nov-12 5:07
professionalEddy Vluggen21-Nov-12 5:07 
QuestionBinding gridview from webservice using jquery Pin
saravanan2509218-Nov-12 20:41
saravanan2509218-Nov-12 20:41 
AnswerRe: Binding gridview from webservice using jquery Pin
Phanindra26119-Nov-12 6:05
Phanindra26119-Nov-12 6:05 
The solution to your problem comes in three steps
1. Write [WebMethod] (service) to return data from the datatable. But before returning it to your ajax method call convert it to an array. This is because javascript does not understand things such as datatable,dataset,datarow etc...

2. In your aspx page header write an ajax call which should look something like this:-
$(document).ready(function() {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Default.aspx/BindDatatable",
data: "{}",
dataType: "json",
success: function(data) {
for (var i = 0; i < data.d.length; i++) {
$("#gvDetails").append("<tr><td>" + data.d[i].UserId + "</td><td>" + data.d[i].UserName + "</td><td>" + data.d[i].Location + "</td></tr>");
}
},
error: function(result) {
alert("Error");
}
});
});

inside the script tags. UserName,UserId,Location are column names from the database.
3. Bind a dummy datatable to your gridview. It should look something like this:
private void BindColumnToGridview()
{
DataTable dt = new DataTable();
dt.Columns.Add("UserId");
dt.Columns.Add("UserName");
dt.Columns.Add("Location");
dt.Rows.Add();
gvDetails.DataSource = dt;
gvDetails.DataBind();
gvDetails.Rows[0].Visible = false;
}


this is done so that correct data is mapped to the correct columns in gridview.
All the best.
QuestionNlog for .Net compact Pin
TalSt17-Nov-12 19:24
TalSt17-Nov-12 19:24 
AnswerRe: Nlog for .Net compact Pin
Richard MacCutchan17-Nov-12 21:43
mveRichard MacCutchan17-Nov-12 21:43 
GeneralRe: Nlog for .Net compact Pin
TalSt18-Nov-12 1:15
TalSt18-Nov-12 1:15 
GeneralRe: Nlog for .Net compact Pin
Richard MacCutchan18-Nov-12 1:36
mveRichard MacCutchan18-Nov-12 1:36 
GeneralRe: Nlog for .Net compact Pin
TalSt18-Nov-12 1:55
TalSt18-Nov-12 1:55 
GeneralRe: Nlog for .Net compact Pin
Richard MacCutchan18-Nov-12 2:06
mveRichard MacCutchan18-Nov-12 2:06 
AnswerRe: Nlog for .Net compact Pin
jschell19-Nov-12 9:11
jschell19-Nov-12 9:11 
GeneralRe: Nlog for .Net compact Pin
TalSt28-Jan-15 19:02
TalSt28-Jan-15 19:02 
News.NET projects in koramangala,bangalore Pin
WebMaster16-Nov-12 22:24
WebMaster16-Nov-12 22:24 
News2013 final year IEEE projects Pin
WebMaster16-Nov-12 22:20
WebMaster16-Nov-12 22:20 
QuestionWebsite Developemnt Pin
radha123 from Hyderabad15-Nov-12 1:39
radha123 from Hyderabad15-Nov-12 1:39 
AnswerRe: Website Developemnt Pin
Richard MacCutchan15-Nov-12 2:41
mveRichard MacCutchan15-Nov-12 2:41 
GeneralRe: Website Developemnt Pin
Pete O'Hanlon15-Nov-12 3:00
mvePete O'Hanlon15-Nov-12 3:00 
GeneralRe: Website Developemnt Pin
Richard MacCutchan15-Nov-12 4:12
mveRichard MacCutchan15-Nov-12 4:12 
GeneralRe: Website Developemnt Pin
Paul Conrad15-Nov-12 10:37
professionalPaul Conrad15-Nov-12 10:37 
AnswerRe: Website Developemnt Pin
jschell15-Nov-12 8:07
jschell15-Nov-12 8:07 
GeneralRe: Website Developemnt Pin
dojohansen20-Nov-12 6:02
dojohansen20-Nov-12 6:02 

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.