Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Vb.net
Message
From
28/04/2002 18:15:57
 
 
To
28/04/2002 18:03:21
Mike Smith
Doncaster Office Services
Oakville, Ontario, Canada
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Re: Vb.net
Miscellaneous
Thread ID:
00647430
Message ID:
00650184
Views:
26
>For the Edit type screens, I might use Macromedia HomeSite to generate the initial HTML then I would manually insert the VFP field identifications.

VS.NET lets you edit your pages visually, dropping server controls on the form and writing code behind the. If you're not familiar with Web Forms, check this out, its a brief introduction, but it should give you a feel for whats possible.

http://www.levelextreme.com/Magazine/March2002/Page9.asp

>For Tables, I would write my own HTML code to set up the TABLEBORDER, CELLPADDING etc. then I would insert VFP Scan ... EndScan code in between. Where input is permitted into the tables, there are some pretty elaborate code requirements to get the new data back to the Web Server.

For lists, you drop a DataList or DataGrid control on your Web Form, set some formatting properties, and then do something like this:
MyList.DataSource = DS.Tables("Table").DefaultView
MyList.DataBind()
This will automatically populate your control from an ADO.NET table.

ASP.NET Web Forms ease the page creation process considerablly. THere's a 17 year old student working for me with no programming experience at all, and he got a functional ASP.NET pages working after an hour or two of playing and following the Quick Guides.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform