Does anyone know of any web parts that insert data to a table?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am unable to find any web parts within Front Page 2003 that allow me to
insert data to a table. I can find the web parts that allow you to pull data
from a table, but none that insert records to a table.

For example, a web part with a text box, that after clicking on submit will
send the database results to a table. This was easy to do when creating an
ASP web page on an IIS server,but it doesn't appear to be an available out
of the box web part for Portal Server 2003.

The server is running Sharepoint Portal Server 2003 SP2, back end database
is SQL SP4. Client is Windows XP SP2 w/Front Page 2003.
 
Right; other than the pages Windows SharePoint Services provides for updating
lists, there are no built-in components for updating databases. Instead, you
have to write your own Web Part, typically with Visual Studio, using C# or
VB.NET.

For more info, browse:

http://msdn.microsoft.com/library/en-us/spptsdk/html/SPPTWPFProgTasks_SV01072932.asp

Jim Buyens
Microsoft MVP
http://www.interlacken.com
Author of:
o--> Microsoft Visual Web Developer 2005 Express Edition: Build a Web Site
Now!
o--> Microsoft Office FrontPage 2003 Inside Out
o--> Microsoft Windows SharePoint Services Inside Out
o--> Faster Smarter Beginning Programming
 
Actually there is two ways to update a database: the database Interface
Wizard or edit, delete, new record.

Or, for new records only, create a form and connect a database to it
(through Form Properties).
 
Back
Top