473,725 Members | 2,017 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Save file on server..

Hi!

I would like to know if I can save File on Server using server-side code?

For example, I like to create thumbnail images and populate specific
directory.

Do I need specific permissions to do this? (I use public host)

Thanks!
Nov 17 '05 #1
9 3023
Yes your code will need write permissions to the folder on the server that
you wish to save to.
Normally you'd grant such permission to the ASPNET user account.
In your case you'll probably need your web host to set up the necessary
permissions for you.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OE******** ******@TK2MSFTN GP10.phx.gbl...
Hi!

I would like to know if I can save File on Server using server-side code?

For example, I like to create thumbnail images and populate specific
directory.

Do I need specific permissions to do this? (I use public host)

Thanks!

Nov 17 '05 #2
Ok.

Thanks, will try this ...
"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
Yes your code will need write permissions to the folder on the server that
you wish to save to.
Normally you'd grant such permission to the ASPNET user account.
In your case you'll probably need your web host to set up the necessary
permissions for you.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OE******** ******@TK2MSFTN GP10.phx.gbl...
Hi!

I would like to know if I can save File on Server using server-side code?
For example, I like to create thumbnail images and populate specific
directory.

Do I need specific permissions to do this? (I use public host)

Thanks!


Nov 17 '05 #3
Steve,

I did it and it works perfect on my system and doesn't work on a host...

Do you know EXACTLY what they need to set on their server to allow file
operations?

Thanks a lot,
Ivan

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
Yes your code will need write permissions to the folder on the server that
you wish to save to.
Normally you'd grant such permission to the ASPNET user account.
In your case you'll probably need your web host to set up the necessary
permissions for you.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OE******** ******@TK2MSFTN GP10.phx.gbl...
Hi!

I would like to know if I can save File on Server using server-side code?
For example, I like to create thumbnail images and populate specific
directory.

Do I need specific permissions to do this? (I use public host)

Thanks!


Nov 17 '05 #4
By default the ASPNET user account needs write permission to the folder
you're trying to write to. It's as simple as that.

Of course your web host may have customized their servers so that your web
app is running under a different user account. Only they know these kinds
of details.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
Steve,

I did it and it works perfect on my system and doesn't work on a host...

Do you know EXACTLY what they need to set on their server to allow file
operations?

Thanks a lot,
Ivan

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
Yes your code will need write permissions to the folder on the server that
you wish to save to.
Normally you'd grant such permission to the ASPNET user account.
In your case you'll probably need your web host to set up the necessary
permissions for you.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OE******** ******@TK2MSFTN GP10.phx.gbl...
Hi!

I would like to know if I can save File on Server using server-side

code?
For example, I like to create thumbnail images and populate specific
directory.

Do I need specific permissions to do this? (I use public host)

Thanks!



Nov 17 '05 #5
Ok..

It was simple (as far as setup) My web hositng panel allow me to change
permissions.

BUT, trying ASPNET account didn't do the trick.

Also I have IUSR_SOMETHING which didn't work eather.

I gave up and added permissions to "Everyone" which made it work.
I wonder if this is dangerous as far as security?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:uJ******** ******@TK2MSFTN GP11.phx.gbl...
By default the ASPNET user account needs write permission to the folder
you're trying to write to. It's as simple as that.

Of course your web host may have customized their servers so that your web
app is running under a different user account. Only they know these kinds
of details.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
Steve,

I did it and it works perfect on my system and doesn't work on a host...

Do you know EXACTLY what they need to set on their server to allow file
operations?

Thanks a lot,
Ivan

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
Yes your code will need write permissions to the folder on the server that you wish to save to.
Normally you'd grant such permission to the ASPNET user account.
In your case you'll probably need your web host to set up the necessary permissions for you.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OE******** ******@TK2MSFTN GP10.phx.gbl...
> Hi!
>
> I would like to know if I can save File on Server using server-side

code?
>
> For example, I like to create thumbnail images and populate specific
> directory.
>
> Do I need specific permissions to do this? (I use public host)
>
> Thanks!
>
>



Nov 17 '05 #6
Yes I'd say that's pretty risky, especially on a shared server.
You should ask your web host what user account your web app is running under
and try to limit permissions to it.
Or you might be able to use impersonation to get it to run under a specific
account of your choosing.
Here's more info:
http://msdn.microsoft.com/library/de...ersonation.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OM******** ******@TK2MSFTN GP10.phx.gbl...
Ok..

It was simple (as far as setup) My web hositng panel allow me to change
permissions.

BUT, trying ASPNET account didn't do the trick.

Also I have IUSR_SOMETHING which didn't work eather.

I gave up and added permissions to "Everyone" which made it work.
I wonder if this is dangerous as far as security?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:uJ******** ******@TK2MSFTN GP11.phx.gbl...
By default the ASPNET user account needs write permission to the folder
you're trying to write to. It's as simple as that.

Of course your web host may have customized their servers so that your web
app is running under a different user account. Only they know these kinds of details.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
Steve,

I did it and it works perfect on my system and doesn't work on a host...
Do you know EXACTLY what they need to set on their server to allow file operations?

Thanks a lot,
Ivan

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
> Yes your code will need write permissions to the folder on the server
that
> you wish to save to.
> Normally you'd grant such permission to the ASPNET user account.
> In your case you'll probably need your web host to set up the

necessary > permissions for you.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://Steve.Orr.net
> Hire top-notch developers at http://www.able-consulting.com
>
>
>
> "Ivan Demkovitch" <i@a.b> wrote in message
> news:OE******** ******@TK2MSFTN GP10.phx.gbl...
> > Hi!
> >
> > I would like to know if I can save File on Server using

server-side code?
> >
> > For example, I like to create thumbnail images and populate specific > > directory.
> >
> > Do I need specific permissions to do this? (I use public host)
> >
> > Thanks!
> >
> >
>
>



Nov 17 '05 #7
Steve,

Thanks again, will try them 1 by 1.

I changed permissions to anyone to "Write only"

Which means worst thing I can get is a bunch of files??

I got another question:

I use Output stream to generate image on web page. I use custom http handler
for this.

To include picture I have code like:
<img title="Click to see item details"
src="/ASPNET/photo.aspx?Imag eKey=6&Width=10 0&Height=0" border="0" />

photo.aspx is actually DLL which processes image.

I used output stream to output array of bytes and it works fine. Now I cache
scaled images and if image already scaled I load it and
save byte array to stream which works good as well.

However, I think it's steel performance issue to load image into array and
then save to stream.
It should be much better to just add url link to image somehow.

I tried something like: (in photo.dll)
//Just pass file name to response...
Response.Conten tType = "text/html";
Response.Write( ScaledImageWebP ath);
Response.End();

Which doesn't work...

DO you have any ideas on how this could be accomplished?

Thank you,
Ivan


"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Yes I'd say that's pretty risky, especially on a shared server.
You should ask your web host what user account your web app is running under and try to limit permissions to it.
Or you might be able to use impersonation to get it to run under a specific account of your choosing.
Here's more info:
http://msdn.microsoft.com/library/de...ersonation.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OM******** ******@TK2MSFTN GP10.phx.gbl...
Ok..

It was simple (as far as setup) My web hositng panel allow me to change
permissions.

BUT, trying ASPNET account didn't do the trick.

Also I have IUSR_SOMETHING which didn't work eather.

I gave up and added permissions to "Everyone" which made it work.
I wonder if this is dangerous as far as security?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:uJ******** ******@TK2MSFTN GP11.phx.gbl...
By default the ASPNET user account needs write permission to the folder you're trying to write to. It's as simple as that.

Of course your web host may have customized their servers so that your web app is running under a different user account. Only they know these kinds of details.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
> Steve,
>
> I did it and it works perfect on my system and doesn't work on a host... >
> Do you know EXACTLY what they need to set on their server to allow file > operations?
>
> Thanks a lot,
> Ivan
>
> "Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
> news:eF******** ******@TK2MSFTN GP09.phx.gbl...
> > Yes your code will need write permissions to the folder on the server that
> > you wish to save to.
> > Normally you'd grant such permission to the ASPNET user account.
> > In your case you'll probably need your web host to set up the

necessary
> > permissions for you.
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD, MVP
> > http://Steve.Orr.net
> > Hire top-notch developers at http://www.able-consulting.com
> >
> >
> >
> > "Ivan Demkovitch" <i@a.b> wrote in message
> > news:OE******** ******@TK2MSFTN GP10.phx.gbl...
> > > Hi!
> > >
> > > I would like to know if I can save File on Server using server-side > code?
> > >
> > > For example, I like to create thumbnail images and populate specific > > > directory.
> > >
> > > Do I need specific permissions to do this? (I use public host)
> > >
> > > Thanks!
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8
You cannot write an image directly to an HTML page. You
can only put links to images in a page.
Normally your img tag would point to a jpg or a gif image file.
In your case you'll want it to point to a special page you've designed
specifically for outputting these images.
For example:
<img src='myimage.as px' ...>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com


"Ivan Demkovitch" <i@a.b> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Steve,

Thanks again, will try them 1 by 1.

I changed permissions to anyone to "Write only"

Which means worst thing I can get is a bunch of files??

I got another question:

I use Output stream to generate image on web page. I use custom http handler for this.

To include picture I have code like:
<img title="Click to see item details"
src="/ASPNET/photo.aspx?Imag eKey=6&Width=10 0&Height=0" border="0" />

photo.aspx is actually DLL which processes image.

I used output stream to output array of bytes and it works fine. Now I cache scaled images and if image already scaled I load it and
save byte array to stream which works good as well.

However, I think it's steel performance issue to load image into array and
then save to stream.
It should be much better to just add url link to image somehow.

I tried something like: (in photo.dll)
//Just pass file name to response...
Response.Conten tType = "text/html";
Response.Write( ScaledImageWebP ath);
Response.End();

Which doesn't work...

DO you have any ideas on how this could be accomplished?

Thank you,
Ivan


"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Yes I'd say that's pretty risky, especially on a shared server.
You should ask your web host what user account your web app is running

under
and try to limit permissions to it.
Or you might be able to use impersonation to get it to run under a

specific
account of your choosing.
Here's more info:

http://msdn.microsoft.com/library/de...ersonation.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OM******** ******@TK2MSFTN GP10.phx.gbl...
Ok..

It was simple (as far as setup) My web hositng panel allow me to change permissions.

BUT, trying ASPNET account didn't do the trick.

Also I have IUSR_SOMETHING which didn't work eather.

I gave up and added permissions to "Everyone" which made it work.
I wonder if this is dangerous as far as security?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:uJ******** ******@TK2MSFTN GP11.phx.gbl...
> By default the ASPNET user account needs write permission to the folder > you're trying to write to. It's as simple as that.
>
> Of course your web host may have customized their servers so that
your web
> app is running under a different user account. Only they know these

kinds
> of details.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://Steve.Orr.net
> Hire top-notch developers at http://www.able-consulting.com
>
>
>
> "Ivan Demkovitch" <i@a.b> wrote in message
> news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
> > Steve,
> >
> > I did it and it works perfect on my system and doesn't work on a

host...
> >
> > Do you know EXACTLY what they need to set on their server to
allow file
> > operations?
> >
> > Thanks a lot,
> > Ivan
> >
> > "Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
> > news:eF******** ******@TK2MSFTN GP09.phx.gbl...
> > > Yes your code will need write permissions to the folder on the

server
> that
> > > you wish to save to.
> > > Normally you'd grant such permission to the ASPNET user account.
> > > In your case you'll probably need your web host to set up the
necessary
> > > permissions for you.
> > >
> > > --
> > > I hope this helps,
> > > Steve C. Orr, MCSD, MVP
> > > http://Steve.Orr.net
> > > Hire top-notch developers at http://www.able-consulting.com
> > >
> > >
> > >
> > > "Ivan Demkovitch" <i@a.b> wrote in message
> > > news:OE******** ******@TK2MSFTN GP10.phx.gbl...
> > > > Hi!
> > > >
> > > > I would like to know if I can save File on Server using

server-side
> > code?
> > > >
> > > > For example, I like to create thumbnail images and populate

specific
> > > > directory.
> > > >
> > > > Do I need specific permissions to do this? (I use public host)
> > > >
> > > > Thanks!
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #9
Steve,

See my reply to George in message "Output Stream Question"
<img src='myimage.as px' ...> is exactly what I'm doing.

myimage.aspx is my http handler where code is.

Before I was taking image, scaled it and put into stream

Now I cache image once it requested and place in directory.

I just load bitmap and output to stream without scaling/other operations I
do.

It works faster, but I want avoid loading bitmap and somehow point browser
to this image..

Any ideas on how to approach it?


"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:e1******** ******@TK2MSFTN GP12.phx.gbl...
You cannot write an image directly to an HTML page. You
can only put links to images in a page.
Normally your img tag would point to a jpg or a gif image file.
In your case you'll want it to point to a special page you've designed
specifically for outputting these images.
For example:
<img src='myimage.as px' ...>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com


"Ivan Demkovitch" <i@a.b> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Steve,

Thanks again, will try them 1 by 1.

I changed permissions to anyone to "Write only"

Which means worst thing I can get is a bunch of files??

I got another question:

I use Output stream to generate image on web page. I use custom http

handler
for this.

To include picture I have code like:
<img title="Click to see item details"
src="/ASPNET/photo.aspx?Imag eKey=6&Width=10 0&Height=0" border="0" />

photo.aspx is actually DLL which processes image.

I used output stream to output array of bytes and it works fine. Now I

cache
scaled images and if image already scaled I load it and
save byte array to stream which works good as well.

However, I think it's steel performance issue to load image into array and
then save to stream.
It should be much better to just add url link to image somehow.

I tried something like: (in photo.dll)
//Just pass file name to response...
Response.Conten tType = "text/html";
Response.Write( ScaledImageWebP ath);
Response.End();

Which doesn't work...

DO you have any ideas on how this could be accomplished?

Thank you,
Ivan


"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Yes I'd say that's pretty risky, especially on a shared server.
You should ask your web host what user account your web app is running

under
and try to limit permissions to it.
Or you might be able to use impersonation to get it to run under a

specific
account of your choosing.
Here's more info:

http://msdn.microsoft.com/library/de...ersonation.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com

"Ivan Demkovitch" <i@a.b> wrote in message
news:OM******** ******@TK2MSFTN GP10.phx.gbl...
> Ok..
>
> It was simple (as far as setup) My web hositng panel allow me to change > permissions.
>
> BUT, trying ASPNET account didn't do the trick.
>
> Also I have IUSR_SOMETHING which didn't work eather.
>
> I gave up and added permissions to "Everyone" which made it work.
> I wonder if this is dangerous as far as security?
>
>
>
> "Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
> news:uJ******** ******@TK2MSFTN GP11.phx.gbl...
> > By default the ASPNET user account needs write permission to the

folder
> > you're trying to write to. It's as simple as that.
> >
> > Of course your web host may have customized their servers so that your web
> > app is running under a different user account. Only they know these kinds
> > of details.
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD, MVP
> > http://Steve.Orr.net
> > Hire top-notch developers at http://www.able-consulting.com
> >
> >
> >
> > "Ivan Demkovitch" <i@a.b> wrote in message
> > news:Oj******** ******@TK2MSFTN GP09.phx.gbl...
> > > Steve,
> > >
> > > I did it and it works perfect on my system and doesn't work on a
host...
> > >
> > > Do you know EXACTLY what they need to set on their server to allow file
> > > operations?
> > >
> > > Thanks a lot,
> > > Ivan
> > >
> > > "Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
> > > news:eF******** ******@TK2MSFTN GP09.phx.gbl...
> > > > Yes your code will need write permissions to the folder on the
server
> > that
> > > > you wish to save to.
> > > > Normally you'd grant such permission to the ASPNET user account. > > > > In your case you'll probably need your web host to set up the
> necessary
> > > > permissions for you.
> > > >
> > > > --
> > > > I hope this helps,
> > > > Steve C. Orr, MCSD, MVP
> > > > http://Steve.Orr.net
> > > > Hire top-notch developers at http://www.able-consulting.com
> > > >
> > > >
> > > >
> > > > "Ivan Demkovitch" <i@a.b> wrote in message
> > > > news:OE******** ******@TK2MSFTN GP10.phx.gbl...
> > > > > Hi!
> > > > >
> > > > > I would like to know if I can save File on Server using
server-side
> > > code?
> > > > >
> > > > > For example, I like to create thumbnail images and populate
specific
> > > > > directory.
> > > > >
> > > > > Do I need specific permissions to do this? (I use public host) > > > > >
> > > > > Thanks!
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #10

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

Similar topics

2
2926
by: RickL | last post by:
I have an ASP application that uploads a specified file to the server. To retrieve the file, I simply assign the filepath and file to a hyperlink on the page. When you click "Save Target As" for some file types, I get the following error messsage: IE can not download <file> from <server>. IE was not able to open this internet site. The requested site is either unavalable or can not be found. Can anyone tell me how to save a file of any type?...
5
6893
by: kevin | last post by:
Hi, Any help with this would be really appreciated! I'm trying to download a file from a remote server. The access permissions is okay but the problem I'm facing is that the file is getting downloaded before the Save As dialogue appears. As we will be downloading some large files, it's unpractical to have this. So far the code I have to download the file is
4
5105
by: John | last post by:
Hi, I generate a report in a comma delimited file and give it a name like MyReport.csv . I then set a Hyperlink control to point tp the file HyperLink1.text = "Download" Hyperlink1.NavigateUrl = "MyReport.csv" When the user clicks the HyperLink I would always like to
4
3716
by: Glenn M | last post by:
I have a shared XML file on a server . i also have one xslt file that performs a simple transform on in to view the data. now i want to have another page that lets users modify the shared xml file via some editable controls such as text boxes , option boxes etc. how can i implment this , should i use another xslt file with <INPUT> controls . if so how can i save the result back using the asp.net
6
4015
by: Pat Carden | last post by:
Hi, We need to allow webusers to upload a file on our website (on Server3, all servers run Server 2003, remotely hosted) and eventually save it on our SBS Server (Server2) which is not exposed through our firewall. We have another server (Server1) within the SBS domain that is exposed through port 80 of the firewall on which we host some web services and images. What is the best architecture for getting the file from the remotely...
3
2153
by: Stefano | last post by:
I've a form windows with a lot of textbox controls. How can I do if I have to save all text proprety of this controls in an external file, to reload them in future?
4
6260
by: Jonny | last post by:
Hello Group How do I open a Save File Dialog from an ASPX page behind a browse button? Any help would be fantastic!! I am using ASP.NET 1.1 using VB.NET as the coding language TIA
1
7469
by: rn5a | last post by:
When users submit a Form with a SQL query, the resultset is retrieved from a MS-Access database table which is then exported to an MS-Excel worksheet. After the records get exported to MS-Excel, I want to give users the option to download the Excel file to their local machine. In other words, when users click a download link, I want the Save As.. dialog box to pop-up so that users can save the Excel file to their local machine (note that I...
3
4356
by: evenlater | last post by:
I have an Access application on a terminal server. Sometimes my users need to export reports to pdf, rtf or xls files and save them to their own client device hard drives. They can do that right now the way I have this set up, but it's confusing and slow. When they browse for a place to save the reports, they see all of the drives on the terminal server as well as their own client drives. So they're likely to want to choose "My...
0
8888
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8752
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9174
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9111
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8096
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4782
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3221
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.