Jump to content

HTML and javascript dashboard


RMP

Recommended Posts

I have created HTML tables as below by hard coded the values:

Name weekhandled ticket monthlyhandled ticket daily handledticket credits
xyz         1                 2                       1             1

My requirement is "I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript. I have little knowledge on JavaScript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement?.like any similar examples

  • Like 1
Link to comment
Share on other sites

You want to display a table built from stored data -- but who creates this data? How often is it updated? Does every user see the same data?

 

yes..I want to display the data from stored data and is updated in a daily basis..

yes. Every user can see the same data perhaps if they have access on that data.

but my requirement is to create a dashboard using HTML table and display the data on runtime with help of javascript ?

Link to comment
Share on other sites

  • 2 weeks later...

i have sample Code like this.Please let me know how to connect Mysql DB from these ASP file.i have installed MySQLODBC driver 5 on my machine.

SQL="select fname,lname from Guest"

set rs=Conn.Execute(SQL)

response.write("")

response.write("")

while (not rs.EOF)

response.write("")

response.write("" & rs("fname") & "")

response.write("" & rs("lname") & "")

response.write("")

rs.MoveNext()

wend

rs.close()

conn.close()

response.write("") %>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...