Click here to Skip to main content
15,888,802 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDelete confirm() in gride view Pin
toufiq_raja11-Mar-09 20:16
toufiq_raja11-Mar-09 20:16 
AnswerRe: Delete confirm() in gride view Pin
keyur satyadev11-Mar-09 21:53
keyur satyadev11-Mar-09 21:53 
GeneralRe: Delete confirm() in gride view Pin
toufiq_raja11-Mar-09 23:30
toufiq_raja11-Mar-09 23:30 
GeneralRe: Delete confirm() in gride view [modified] Pin
keyur satyadev12-Mar-09 2:27
keyur satyadev12-Mar-09 2:27 
AnswerRe: Delete confirm() in gride view Pin
Expert Coming11-Mar-09 22:44
Expert Coming11-Mar-09 22:44 
AnswerRe: Delete confirm() in gride view Pin
kumar_k50811-Mar-09 23:47
kumar_k50811-Mar-09 23:47 
GeneralRe: Delete confirm() in gride view Pin
anujbanka178412-Mar-09 0:53
anujbanka178412-Mar-09 0:53 
Questiona problem of AjaxPro and js Pin
peacefulheart11-Mar-09 19:34
peacefulheart11-Mar-09 19:34 
hi all Big Grin | :-D ,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:
when submited,datas writed into database.
in CS file, it reture latest date "DataTable" to "get_Result_CallBack "


code 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.Confused | :confused: Confused | :confused:

if i post in a worry catalog,or there is a better catalog.plx tell me.thanks!!!
QuestionExport Datagrid to Excel Pin
rakeshs31211-Mar-09 18:56
rakeshs31211-Mar-09 18:56 
AnswerRe: Export Datagrid to Excel Pin
Ashfield11-Mar-09 21:53
Ashfield11-Mar-09 21:53 
QuestionRe-using usercontrol into a different project. Pin
Juvil John11-Mar-09 18:10
Juvil John11-Mar-09 18:10 
AnswerRe: Re-using usercontrol into a different project. Pin
Rajeesh MP11-Mar-09 19:17
Rajeesh MP11-Mar-09 19:17 
AnswerRe: Re-using usercontrol into a different project. Pin
Juvil John12-Mar-09 13:20
Juvil John12-Mar-09 13:20 
QuestionSQL Server Express, Authentication, Visual Studio, and a Web Host that doesn't support SQL Server:( Pin
rmterenz11-Mar-09 17:46
rmterenz11-Mar-09 17:46 
AnswerRe: SQL Server Express, Authentication, Visual Studio, and a Web Host that doesn't support SQL Server:( Pin
Rajeesh MP11-Mar-09 19:26
Rajeesh MP11-Mar-09 19:26 
Questionset a page as the main page Pin
prasadbuddhika11-Mar-09 17:44
prasadbuddhika11-Mar-09 17:44 
AnswerRe: set a page as the main page Pin
Abhijit Jana11-Mar-09 18:43
professionalAbhijit Jana11-Mar-09 18:43 
QuestionModify the SqlDataSource without altering the gridview Pin
TerRO_GirL11-Mar-09 11:43
TerRO_GirL11-Mar-09 11:43 
QuestionGridview SqlDataSource SelectCommand Pin
Tomb42111-Mar-09 10:29
Tomb42111-Mar-09 10:29 
AnswerRe: Gridview SqlDataSource SelectCommand Pin
Tomb42111-Mar-09 11:16
Tomb42111-Mar-09 11:16 
GeneralRe: Resolved: Gridview SqlDataSource SelectCommand Pin
Tomb42117-Mar-09 9:23
Tomb42117-Mar-09 9:23 
QuestionHow to send the ID field of a datalist to another page? Pin
Arroci11-Mar-09 9:17
Arroci11-Mar-09 9:17 
AnswerRe: How to send the ID field of a datalist to another page? Pin
Christian Graus11-Mar-09 9:33
protectorChristian Graus11-Mar-09 9:33 
AnswerRe: How to send the ID field of a datalist to another page? Pin
Yusuf11-Mar-09 9:50
Yusuf11-Mar-09 9:50 
GeneralRe: How to send the ID field of a datalist to another page? Pin
Christian Graus11-Mar-09 9:54
protectorChristian Graus11-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.