Click here to Skip to main content
15,891,943 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMenu Problem Pin
krishnaveer21-Nov-08 0:49
krishnaveer21-Nov-08 0:49 
AnswerRe: Menu Problem Pin
Christian Graus21-Nov-08 8:51
protectorChristian Graus21-Nov-08 8:51 
QuestionHow i upload a doc file and save it contents in database Pin
manish281021-Nov-08 0:36
manish281021-Nov-08 0:36 
AnswerRe: How i upload a doc file and save it contents in database Pin
Ashfield21-Nov-08 1:17
Ashfield21-Nov-08 1:17 
QuestionDescriptionUrl Pin
nicetohaveyou21-Nov-08 0:31
nicetohaveyou21-Nov-08 0:31 
AnswerRe: DescriptionUrl Pin
Nishant Singh21-Nov-08 3:05
Nishant Singh21-Nov-08 3:05 
Questiondatable & ajax Pin
Sebastian T Xavier21-Nov-08 0:05
Sebastian T Xavier21-Nov-08 0:05 
AnswerRe: datable & ajax Pin
Nishant Singh21-Nov-08 2:56
Nishant Singh21-Nov-08 2:56 
Hi Sebastian,
Datatable can be used in Ajax ,but it needs to be returned as XML from the Server page ,and then that XML can be parsed and the desired task could be done .
eg: in this code in am converting a DataTable into XML string
(This code is on Ajax Server page which returns XML string to Client page which Implements ajax)
public partial class DataAccessAjax : System.Web.UI.Page
{
  protected void Page_Load(object sender, EventArgs e)
 {
string result;
DataTable  dataTable=GetEmpRecords(); --function returning Dataset  
using (StringWriter sw = new StringWriter()) {
dataTable.WriteXml(sw);
result = sw.ToString();
}
Response.Write(result);
 Response.End();

}



Now XML string is returned of datatable could be used for Ajax implementaion at clientside
AnswerRe: datable & ajax Pin
Christian Graus21-Nov-08 8:52
protectorChristian Graus21-Nov-08 8:52 
QuestionAdding Tooltip to dropdownlist Pin
gomsvetri21-Nov-08 0:05
gomsvetri21-Nov-08 0:05 
QuestionActiveX Pin
ellllllllie20-Nov-08 23:31
ellllllllie20-Nov-08 23:31 
AnswerRe: ActiveX Pin
Ashfield20-Nov-08 23:39
Ashfield20-Nov-08 23:39 
AnswerRe: ActiveX Pin
scottgp21-Nov-08 3:05
professionalscottgp21-Nov-08 3:05 
AnswerRe: ActiveX Pin
Paul Conrad21-Nov-08 6:23
professionalPaul Conrad21-Nov-08 6:23 
Questionwindow.open modal dialog problem Pin
lakshmichawala20-Nov-08 22:29
lakshmichawala20-Nov-08 22:29 
AnswerRe: window.open modal dialog problem Pin
Prashant B. Lavate20-Nov-08 23:14
Prashant B. Lavate20-Nov-08 23:14 
QuestionImageButton Designing error in IE 6.0 Pin
kandalu20-Nov-08 21:50
kandalu20-Nov-08 21:50 
AnswerRe: ImageButton Designing error in IE 6.0 Pin
Christian Graus20-Nov-08 22:12
protectorChristian Graus20-Nov-08 22:12 
Questioninactive one dropdownlist while we select item in another dropdown list Pin
subbu.sk20-Nov-08 21:39
subbu.sk20-Nov-08 21:39 
AnswerRe: inactive one dropdownlist while we select item in another dropdown list Pin
Christian Graus20-Nov-08 22:14
protectorChristian Graus20-Nov-08 22:14 
AnswerRe: inactive one dropdownlist while we select item in another dropdown list Pin
Nishant Singh21-Nov-08 3:49
Nishant Singh21-Nov-08 3:49 
Questionhow to avoid concurrency while dealing with dataset Pin
kirtiaroraa20-Nov-08 20:04
kirtiaroraa20-Nov-08 20:04 
AnswerRe: how to avoid concurrency while dealing with dataset Pin
Christian Graus20-Nov-08 21:33
protectorChristian Graus20-Nov-08 21:33 
AnswerRe: how to avoid concurrency while dealing with dataset Pin
Paddy Boyd21-Nov-08 0:08
Paddy Boyd21-Nov-08 0:08 
GeneralRe: how to avoid concurrency while dealing with dataset Pin
eagle_passioned10-Mar-10 1:05
eagle_passioned10-Mar-10 1:05 

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.