473,326 Members | 2,013 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,326 software developers and data experts.

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 2990
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**************@TK2MSFTNGP10.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.net> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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.net> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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**************@TK2MSFTNGP09.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.net> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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.net> wrote in message
news:uJ**************@TK2MSFTNGP11.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**************@TK2MSFTNGP09.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.net> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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**************@TK2MSFTNGP10.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.net> wrote in message
news:uJ**************@TK2MSFTNGP11.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**************@TK2MSFTNGP09.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.net> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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?ImageKey=6&Width=100&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.ContentType = "text/html";
Response.Write(ScaledImageWebPath);
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.net> wrote in message
news:%2****************@tk2msftngp13.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**************@TK2MSFTNGP10.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.net> wrote in message
news:uJ**************@TK2MSFTNGP11.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**************@TK2MSFTNGP09.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.net> wrote in message
> news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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.aspx' ...>

--
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***************@TK2MSFTNGP10.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?ImageKey=6&Width=100&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.ContentType = "text/html";
Response.Write(ScaledImageWebPath);
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.net> wrote in message
news:%2****************@tk2msftngp13.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**************@TK2MSFTNGP10.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.net> wrote in message
news:uJ**************@TK2MSFTNGP11.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**************@TK2MSFTNGP09.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.net> wrote in message
> > news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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.aspx' ...> 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.net> wrote in message
news:e1**************@TK2MSFTNGP12.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.aspx' ...>

--
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***************@TK2MSFTNGP10.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?ImageKey=6&Width=100&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.ContentType = "text/html";
Response.Write(ScaledImageWebPath);
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.net> wrote in message
news:%2****************@tk2msftngp13.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**************@TK2MSFTNGP10.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.net> wrote in message
> news:uJ**************@TK2MSFTNGP11.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**************@TK2MSFTNGP09.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.net> wrote in message
> > > news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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
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...
5
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...
4
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"...
4
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...
6
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...
3
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
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
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...
3
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...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.