473,396 Members | 2,151 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

update my own app - asp

MW
For laptop users who have an ASP application running on their laptops
- is there a way I can have it check when connected to the network
(via the FSO lastmodifieddate) which files need to be updated
(enhancements, etc.), then shoot the ASP pages that have changed down
to the client?
Jul 19 '05 #1
5 1527
In what way do you mean this? Are you talking about web developers who take
projects with them on their laptops or users of your site with laptops? If
the former, the offline files feature in W2K or XP can handle this.

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
For laptop users who have an ASP application running on their laptops
- is there a way I can have it check when connected to the network
(via the FSO lastmodifieddate) which files need to be updated
(enhancements, etc.), then shoot the ASP pages that have changed down
to the client?

Jul 19 '05 #2
MW
More users of an "offline" version of the same web app.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message news:<uV**************@TK2MSFTNGP12.phx.gbl>...
In what way do you mean this? Are you talking about web developers who take
projects with them on their laptops or users of your site with laptops? If
the former, the offline files feature in W2K or XP can handle this.

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
For laptop users who have an ASP application running on their laptops
- is there a way I can have it check when connected to the network
(via the FSO lastmodifieddate) which files need to be updated
(enhancements, etc.), then shoot the ASP pages that have changed down
to the client?

Jul 19 '05 #3
These are the users of your web application, or developers edit the .asp
files? Can you clarify what you're asking?

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
More users of an "offline" version of the same web app.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message

news:<uV**************@TK2MSFTNGP12.phx.gbl>...
In what way do you mean this? Are you talking about web developers who take projects with them on their laptops or users of your site with laptops? If the former, the offline files feature in W2K or XP can handle this.

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
For laptop users who have an ASP application running on their laptops
- is there a way I can have it check when connected to the network
(via the FSO lastmodifieddate) which files need to be updated
(enhancements, etc.), then shoot the ASP pages that have changed down
to the client?

Jul 19 '05 #4
MW
Naaa - the "offline" app is really just a clone of the online app, but
for guys in the field with no Internet connection, and with very
little data.

So when I make an enhancement to the online application (the one on
our Intranet), I was wondering if the "offline" application could do a
quick check (via the FSO and lastmodifieddate) to determine the
changed ASP's and push them out to the "offline" app. Kinda like a
"Windows Update", but without the ActiveX.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message news:<#g**************@TK2MSFTNGP09.phx.gbl>...
These are the users of your web application, or developers edit the .asp
files? Can you clarify what you're asking?

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
More users of an "offline" version of the same web app.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message

news:<uV**************@TK2MSFTNGP12.phx.gbl>...
In what way do you mean this? Are you talking about web developers who take projects with them on their laptops or users of your site with laptops? If the former, the offline files feature in W2K or XP can handle this.

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
> For laptop users who have an ASP application running on their laptops
> - is there a way I can have it check when connected to the network
> (via the FSO lastmodifieddate) which files need to be updated
> (enhancements, etc.), then shoot the ASP pages that have changed down
> to the client?

Jul 19 '05 #5
While doing something like this would be possible, it would be far from a
simple task. You'd have to install IIS on those machines and setup
duplicate intranets locally on their machines, and you'd have to have a way
of distributing your updated files, a way a storing data locally on their
machines and then merging later when they're online, as well as
synchronizing all the data back out to their machines after that. This
would be a management nightmare to do. If you think about how an intranet
works, you should hopefully see why. Forget that it's your intranet for a
moment and pretend someone asked you if he could somehow get Ebay on his
computer to use when he's not connected to the Internet. Even if you were
Ebay's webmaster, can you think of a way to do this, a good way? No.

A client based application would be a much better solution, if it's
important for your users to be able to easily track things when offline. It
would be much simpler in the long end if you threw together even just a
simple VB app that mimics your intranet application and make it so that it
logs the user's data to a file that he can later upload to your intranet.
And have your ASP code parse that info and stick it in your database on the
server. Or something along these lines.

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
Naaa - the "offline" app is really just a clone of the online app, but
for guys in the field with no Internet connection, and with very
little data.

So when I make an enhancement to the online application (the one on
our Intranet), I was wondering if the "offline" application could do a
quick check (via the FSO and lastmodifieddate) to determine the
changed ASP's and push them out to the "offline" app. Kinda like a
"Windows Update", but without the ActiveX.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message

news:<#g**************@TK2MSFTNGP09.phx.gbl>...
These are the users of your web application, or developers edit the .asp
files? Can you clarify what you're asking?

Ray at work

"MW" <mw******@hotmail.com> wrote in message
news:70**************************@posting.google.c om...
More users of an "offline" version of the same web app.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:<uV**************@TK2MSFTNGP12.phx.gbl>...
> In what way do you mean this? Are you talking about web developers
who take
> projects with them on their laptops or users of your site with
laptops? If
> the former, the offline files feature in W2K or XP can handle this.
>
> Ray at work
>
> "MW" <mw******@hotmail.com> wrote in message
> news:70**************************@posting.google.c om...
> > For laptop users who have an ASP application running on their

laptops > > - is there a way I can have it check when connected to the network
> > (via the FSO lastmodifieddate) which files need to be updated
> > (enhancements, etc.), then shoot the ASP pages that have changed down > > to the client?

Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Dave | last post by:
I have 2 tables, one with names, and another with addresses, joined by their CIVICID number (unique to the ADDRESSINFO table) in Oracle. I need to update a field in the NAMEINFO table for a...
8
by: Lauren Quantrell | last post by:
In VBA, I constructed the following to update all records in tblmyTable with each records in tblmyTableTEMP having the same UniqueID: UPDATE tblMyTable RIGHT JOIN tblMyTableTEMP ON...
27
by: VK | last post by:
<http://www.jibbering.com/faq/#FAQ3_2> The parts where update, replacement or add-on is needed are in <update> tag. 3.2 What online resources are available? Javascript FAQ sites, please...
16
by: Philip Boonzaaier | last post by:
I want to be able to generate SQL statements that will go through a list of data, effectively row by row, enquire on the database if this exists in the selected table- If it exists, then the colums...
3
by: Shapper | last post by:
Hello, I have created 3 functions to insert, update and delete an Access database record. The Insert and the Delete code are working fine. The update is not. I checked and my database has all...
9
by: jaYPee | last post by:
I have search a lot of thread in google newsgroup and read a lot of articles but still i don't know how to update the dataset that has 3 tables. my 3 tables looks like the 3 tables from...
5
by: PAUL | last post by:
Hello, I have 2 tables with a relationship set up in the dataset with vb ..net. I add a new record to the parent table then edit an existing child record to have the new parent ID. However when I...
8
by: Zorpiedoman | last post by:
I keep getting a concurrency exception the second time I make a change and attempt to update a dataadapter. It appears this is by design, so there must be something I can do to avoid it. ...
5
by: Stephen Plotnick | last post by:
I'm very new to VB.NET 2003 Here is what I have accomplished: MainSelectForm - Selects an item In a public class I pass a DataViewRow to ItemInformation1 Form ItemInformation2 Form
3
by: Michel Esber | last post by:
Hi all, DB2 V8 LUW FP 15 There is a table T (ID varchar (24), ABC timestamp). ID is PK. Our application needs to frequently update T with a new value for ABC. update T set ABC=? where ID...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.