interaction between aspx & html page

G

Guest

Hi,
I'm new to ASP.NET.
I've some basic ques.
In what situations we use aspx page when DHTML can be used?
How can I interact between an aspx page & html page
eg: using Request . Form[index] i get the values from a html form
but if i want to populate some values in html form based on value retreived
from database , how do i do it?

Thanks in advance
Priya
 
P

Patrice

An ASPX page is just a page that is processed server side to create an HTML
output that is then sent to the browser.

So in your case you would have an ASPX page whose server side
programmability allows to display data taken from a database. You post then
to the same ASPX page whose programmatbility allows then to retrieve the
posted values to update the DB.

See www.asp.net and the "Tutorials" tab for an introduction to web forms
(among other topics).

Patrice
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top