# Getting information server side

**URL:** https://forum.kirupa.com/t/getting-information-server-side/129404
**Category:** Uncategorized
**Created:** [November 23, 2004, 9:21am UTC](https://forum.kirupa.com/t/getting-information-server-side/129404 "2004-11-23T09:21:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Bosch571](https://avatars.discourse-cdn.com/v4/letter/b/838e76/32.png) [@Bosch571](https://forum.kirupa.com/u/Bosch571)
#### Post date: [November 23, 2004, 9:21am UTC](https://forum.kirupa.com/t/getting-information-server-side/129404/1 "2004-11-23T09:21:31Z")

</div>

Hello I have a html table with info. I can get this info out of it with this little script, but how do I get this server side(ASP)? I need to get this into my xml database.

this script works. But this only works client side.

```auto
<script language="JavaScript">{
 function getActorAchternaam(nuber){
 table=document.getElementById("ATable");
 var antwoord=(table.cells[(nuber-1)*2].innerText);
 return antwoord;}
 }
 </script>

```

any ideas how to do this?
