Click here to Skip to main content
15,889,216 members
Home / Discussions / C#
   

C#

 
GeneralRe: this is only for Christian Graus Pin
S K Y12-Mar-09 17:29
S K Y12-Mar-09 17:29 
GeneralRe: this is only for Christian Graus Pin
Wes Aday12-Mar-09 17:56
professionalWes Aday12-Mar-09 17:56 
GeneralRe: this is only for Christian Graus Pin
0x3c012-Mar-09 21:18
0x3c012-Mar-09 21:18 
GeneralRe: this is only for Christian Graus Pin
S K Y12-Mar-09 22:38
S K Y12-Mar-09 22:38 
GeneralRe: this is only for Christian Graus Pin
0x3c013-Mar-09 3:52
0x3c013-Mar-09 3:52 
QuestionAutomatic Driver install with code Pin
zelect12-Mar-09 14:33
zelect12-Mar-09 14:33 
AnswerRe: Automatic Driver install with code Pin
Christian Graus12-Mar-09 16:26
protectorChristian Graus12-Mar-09 16:26 
Questiona problem of AjaxPro and js Pin
peacefulheart12-Mar-09 14:28
peacefulheart12-Mar-09 14:28 
hi all ,i am a newbie here.
recently,i need to creat a real-time responsing comment page.if client sent a comment.it will auto refuse page and display what client post in comment board.
sorry that cos my english is limited,maybe i can't describe it properly
(i have been asked the question in local forum,but there is no answer)


here is the question:<br />
when submited,datas writed into database.<br />
in CS file, it reture latest date "DataTable" to "get_Result_CallBack "


codes here:function get_Result_CallBack(response)
{
if (response.value != null)
{
z = 0;
var ds = response.value;
if(ds != null && typeof(ds) == "object" && ds.Rows != null)
{
arrCellText[0] = ds.Rows[0].Message+" "+ds.Rows[0].UpdateDate ;
arrCellText[1] = ds.Rows[0].Name ;
arrCellText[2] = " <a href='"+ds.Rows[0].ID+"'>REPLY </a>" ;
arrCellText[3] = " <a href='"+ds.Rows[0].ID+"'>DELETE </a>";
var resulttable= "tab"+ds.Rows[0].Img_ID;//this is Table in Datelist.i named Table "tab+meassage ID"
var resulttr= "tr"+ds.Rows[0].Img_ID;
_tab = document.getElementById(resulttable) ;
_tr = document.getElementById(resulttr) ;
createRowCell(_tab, _tr, arrCellText) ;
}

}
return
}

function createRowCell(tab, tr, arrCellText)
{
trNew = tab.insertRow(0) ;
for(var i=0; i <tr.cells.length; i++)
{
//alert(arrCellText[i]);here respones values of every field.
var tdNew = trNew.insertCell() ;
var tnNew = document.createTextNode(arrCellText[i]) ;
tdNew.appendChild(tnNew) ;
}
}

but,"Table" and the page have no any responsing.no refusing,if i press F5.result will display.<br />
<br />
if i post in a worry catalog,or there is a better catalog.plx tell me.thanks!!!

Questionembedding a trackbar (windows application) to internet explorer Pin
tonyblair12-Mar-09 14:26
tonyblair12-Mar-09 14:26 
AnswerRe: embedding a trackbar (windows application) to internet explorer Pin
Christian Graus12-Mar-09 16:28
protectorChristian Graus12-Mar-09 16:28 
QuestionAdd data in gridview from multiple tables and combobox [modified] Pin
haroon198012-Mar-09 14:06
haroon198012-Mar-09 14:06 
AnswerRe: Add data in gridview from multiple tables and combobox Pin
haroon198012-Mar-09 22:52
haroon198012-Mar-09 22:52 
QuestionAdd combox in gridview - Getting OledbException Pin
haroon198012-Mar-09 13:19
haroon198012-Mar-09 13:19 
AnswerRe: Add combox in gridview - Getting OledbException Pin
haroon198012-Mar-09 14:02
haroon198012-Mar-09 14:02 
QuestionIs it possible to receive key input into two controls simultaneously? Pin
Yellow_Yackets12-Mar-09 11:26
Yellow_Yackets12-Mar-09 11:26 
AnswerRe: Is it possible to receive key input into two controls simultaneously? Pin
Nagy Vilmos12-Mar-09 11:52
professionalNagy Vilmos12-Mar-09 11:52 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Yellow_Yackets12-Mar-09 11:57
Yellow_Yackets12-Mar-09 11:57 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Nagy Vilmos12-Mar-09 12:09
professionalNagy Vilmos12-Mar-09 12:09 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Yellow_Yackets12-Mar-09 15:22
Yellow_Yackets12-Mar-09 15:22 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Yellow_Yackets12-Mar-09 15:40
Yellow_Yackets12-Mar-09 15:40 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Nagy Vilmos12-Mar-09 23:09
professionalNagy Vilmos12-Mar-09 23:09 
GeneralRe: Is it possible to receive key input into two controls simultaneously? Pin
Yellow_Yackets13-Mar-09 7:10
Yellow_Yackets13-Mar-09 7:10 
QuestionSplitting video into frames Pin
Payam Rastogi12-Mar-09 10:25
Payam Rastogi12-Mar-09 10:25 
AnswerRe: Splitting video into frames Pin
Ravadre12-Mar-09 11:37
Ravadre12-Mar-09 11:37 
Questionjoin pieces in an image Pin
Umangj12-Mar-09 9:54
Umangj12-Mar-09 9:54 

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.