Click here to Skip to main content
15,893,564 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: how to call asmx webservices? Pin
hifiger200425-May-08 15:25
hifiger200425-May-08 15:25 
AnswerRe: how to call asmx webservices? Pin
Laxmikant Lad25-May-08 19:12
Laxmikant Lad25-May-08 19:12 
AnswerRe: how to call asmx webservices? Pin
hifiger200425-May-08 19:59
hifiger200425-May-08 19:59 
QuestionIs there replacement of ondrag..ondrop Pin
Exelioindia25-May-08 6:41
Exelioindia25-May-08 6:41 
AnswerRe: Is there replacement of ondrag..ondrop Pin
Shog925-May-08 6:58
sitebuilderShog925-May-08 6:58 
AnswerRe: Is there replacement of ondrag..ondrop Pin
l a u r e n25-May-08 19:22
l a u r e n25-May-08 19:22 
QuestionHow to decrease time when loading xml to object.innerHTML Pin
TheAteist25-May-08 4:04
TheAteist25-May-08 4:04 
AnswerRe: How to decrease time when loading xml to object.innerHTML Pin
Shog925-May-08 7:22
sitebuilderShog925-May-08 7:22 
You're gonna need to give a better example. To the best of my knowledge, the innerHTML property on TABLE elements is read-only on IE6 - so i'm not sure what myTbl is in your code snippet. I ran the following test, and found the table generated almost instantly:
<html>
<head>
  <script>
  var tableHtml = "";
  function init()
  {
    for (var i=0; i<2000; ++i)
      tableHtml += "<tr><td>The quick brown foxes jumped</td></tr>";
  }
  function fillTable()
  {
    var tableDiv = document.getElementById("tableContainer");
    tableDiv.innerHTML = "<table>"+tableHtml+"</table>";
  }
  function runTest()
  {
  init();
  fillTable();
  }
  </script>
</head>
<body onload="runTest();">
  <div id="tableContainer">
  </div>
</body>
</html>



Citizen 20.1.01
'The question is,' said Humpty Dumpty, 'which is to be master - that's all.'

GeneralRe: How to decrease time when loading xml to object.innerHTML Pin
TheAteist28-May-08 1:17
TheAteist28-May-08 1:17 
QuestionIssue with ajax Update panel and Javascript Pin
Sajid A.24-May-08 22:19
Sajid A.24-May-08 22:19 
QuestionGZIP soapextension Pin
kyus9423-May-08 3:22
kyus9423-May-08 3:22 
QuestionIs it possible to overcome proxy Authentication? Pin
KASR122-May-08 19:48
KASR122-May-08 19:48 
AnswerRe: Is it possible to overcome proxy Authentication? Pin
Laxmikant Lad23-May-08 2:00
Laxmikant Lad23-May-08 2:00 
Questionvs2008 web dev stuff... Pin
l a u r e n22-May-08 17:56
l a u r e n22-May-08 17:56 
AnswerRe: vs2008 web dev stuff... Pin
Christian Graus22-May-08 20:09
protectorChristian Graus22-May-08 20:09 
GeneralRe: vs2008 web dev stuff... Pin
l a u r e n22-May-08 20:26
l a u r e n22-May-08 20:26 
GeneralRe: vs2008 web dev stuff... Pin
Christian Graus22-May-08 21:16
protectorChristian Graus22-May-08 21:16 
AnswerRe: vs2008 web dev stuff... Pin
led mike23-May-08 6:05
led mike23-May-08 6:05 
GeneralRe: vs2008 web dev stuff... Pin
l a u r e n23-May-08 9:04
l a u r e n23-May-08 9:04 
GeneralRe: vs2008 web dev stuff... Pin
led mike23-May-08 10:02
led mike23-May-08 10:02 
GeneralRe: vs2008 web dev stuff... Pin
l a u r e n23-May-08 11:39
l a u r e n23-May-08 11:39 
Questioncode for cosuming proy webservice methods in client apllication using c#.net Pin
madhavi.kona22-May-08 1:34
madhavi.kona22-May-08 1:34 
Questioncan we test, how ASP.net's windows authentication is verifying the IIS's Basic,Digest...authentication in the pipelining process? Pin
pashitech22-May-08 0:24
pashitech22-May-08 0:24 
QuestionBrowser independent javascript Pin
Exelioindia21-May-08 22:57
Exelioindia21-May-08 22:57 
AnswerRe: Browser independent javascript Pin
Laxmikant Lad25-May-08 19:10
Laxmikant Lad25-May-08 19:10 

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.