FrontPage and c# application...

T

trint

Is there a way that I can incorporate FrontPage into my c#
application?
This project is used to edit the products description of an eCommerce
site
and the column in SQL Server stores the HTML page of the description
of each
product in our 14,000 product line.
Currently, the workers in IT have to go outside of the product editor
to edit just the
description, but the product editor pics that up as a file and inserts
it into the description
field.
Any help in this matter is appreciated.
Thanks,
Trint
 
N

Nicholas Paldino [.NET/C# MVP]

trint,

I don't know of any way to directly edit pages from your database into
FrontPage, however, as a workaround, I would suggest having a program which
will pull the page from the database and save it into a temp file (noting
the creation/last modified time). Then, the program would open FrontPage
through the Process class. Then the program would run normally.

Then, the program that launched FrontPage would call the WaitForExit
method on the Process class. When the call returns, check the last modified
time on the temp file. If it is different from the created time, then read
the contents and store it back in the database.
 
T

trint

trint,

I don't know of any way to directly edit pages from your database into
FrontPage, however, as a workaround, I would suggest having a program which
will pull the page from the database and save it into a temp file (noting
the creation/last modified time). Then, the program would open FrontPage
through the Process class. Then the program would run normally.

Then, the program that launched FrontPage would call the WaitForExit
method on the Process class. When the call returns, check the last modified
time on the temp file. If it is different from the created time, then read
the contents and store it back in the database.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




Is there a way that I can incorporate FrontPage into my c#
application?
This project is used to edit the products description of an eCommerce
site
and the column in SQL Server stores the HTML page of the description
of each
product in our 14,000 product line.
Currently, the workers in IT have to go outside of the product editor
to edit just the
description, but the product editor pics that up as a file and inserts
it into the description
field.
Any help in this matter is appreciated.
Thanks,
Trint- Hide quoted text -

- Show quoted text -

Nicholas,
Can you provide me an example of what you just described? This will
be very helpful and implented
in my application.
Thanks,
Trint
 

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