Hi,
   First of all I let u know that it is difficult to handle the datagrid on 
client side. 
I am sending zip file to u, see it, and let me know whether it solve your 
purpose. Also, change the namespace of the attached files as per your project
 
Waiting for your reply,
 
Thanks & Regards
Krishan Kant

mzancana <[EMAIL PROTECTED]> wrote:
Hi,

I'm fairly new to .NET. I've got an application that records the 
amount of time an employee spends on a job. The jobs/time for a given 
period are then displayed in a datagrid.  

I'd like it all to run client side, so the screen doesn't load 
again.  

When I add a record, I'm able to get the information into the 
database, but the new record doesn't appear in the datagrid.  

Any help/suggestions are greatly appreciated!!   

Here's the Javascript function I'm using to load/reload the datagrid 
table (sorry about the way the text wrapped):

function LoadTable()
     {
            var Employee = document.getElementById
("_ctl1__ctl0_ddlEmployee").value;
            var StartDate = document.getElementById
("_ctl1__ctl0_TextStartDate").value;
            var EndDate = document.getElementById
("_ctl1__ctl0_TextEndDate").value;                  

            // Update the xml island with the employee history 
information
            var oResult = Methods.EmployeeActivity(Employee, 
StartDate, EndDate);

            var xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
            xmlDoc.async=false;
            xmlDoc.load("activityhistory.xml");
            
            var loaded = xmlDoc.loadXML(oResult.value);
            if (loaded) {
                  var xslDoc=new ActiveXObject
("Microsoft.XMLDOM");
                  xslDoc.async=false;
                  xslDoc.load("ActivityHistoryStyle.xsl");
                  document.getElementById
("Table1").insertAdjacentHTML = xmlDoc.transformNode(xslDoc);
              }
      }      










---------------------------------
YAHOO! GROUPS LINKS 


    Visit your group "AspNetAnyQuestionIsOk" on the web.
  
    To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
  
    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


---------------------------------




Send instant messages to your online friends http://uk.messenger.yahoo.com 

[Non-text portions of this message have been removed]



------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a 
href="http://us.ard.yahoo.com/SIG=12h7g9clb/M=362335.6886445.7839731.1510227/D=groups/S=1705006764:TM/Y=YAHOO/EXP=1123241998/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!</a>.</font>
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to