473,326 Members | 2,655 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.

Implementing upload progress indicator question

I used the following code for implementing a file upload progress indicator, using UpdateProgress Panel, though I have a problem that FileUpload.Has File always returns false. Any suggestions what might be wrong?

FileUpload2.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FileUpload2.aspx.cs" Inherits="FileUpload2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title> drag </title>

</head>
<body>

<form id="f1" enctype="multipart/form-data" runat="server">
<h4>Select a file to upload:</h4>

<atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />
<atlas:UpdatePanel ID="upResults" runat="server" Mode="conditional">
<Triggers>
<atlas:ControlEventTrigger ControlID="Upload" EventName="Click" />
</Triggers>
<ContentTemplate>
</ContentTemplate>
</atlas:UpdatePanel>
<asp:FileUpload id="FileUpload" runat="server"> </asp:FileUpload>
<br /><br />
<asp:Button id="Upload" Text="Upload file" OnClick="UploadButton_Click" runat="server">
</asp:Button>
<atlas:UpdateProgress ID="uprProgress" runat="server">

<ProgressTemplate>
<img src="images/animated_loading.gif" /> Uploading....
</ProgressTemplate>
</atlas:UpdateProgress>
</form>
</body>
</html>

FileUpload2.aspx.cs

using .....;
public partial class FileUpload2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

protected void UploadButton_Click(object sender, EventArgs e)
{
// Specify the path on the server to save the uploaded file to.
String savePath = @"C:\Temp\uploads\";
// Before attempting to perform operations on the file, verify that the FileUpload control contains a file.
if (FileUpload.HasFile)
{
String fileName = FileUpload.FileName;
savePath += fileName;
// Call the SaveAs method to save the uploaded file to the specified path.
FileUpload.SaveAs(savePath);
// Notify the user of the name of the file was saved under.
// UploadStatusLabel.Text = "Your file was saved as " + fileName;
}
else
{
// Notify the user that a file was not uploaded.
// UploadStatusLabel.Text = "You did not specify a file to upload.";
}
}
}

Any suggestions what might be wrong?

Thanks,
Marko Vuksanovic.

Jun 24 '06 #1
1 2099
There are several ways to do progress bar.
try this one below
http://www.atlasasp.com/Cat/Articles...r/default.aspx
Marko Vuksanovic wrote:
I used the following code for implementing a file upload progress indicator, using UpdateProgress Panel, though I have a problem that FileUpload.Has File always returns false. Any suggestions what might be wrong?

FileUpload2.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FileUpload2.aspx.cs" Inherits="FileUpload2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title> drag </title>

</head>
<body>

<form id="f1" enctype="multipart/form-data" runat="server">
<h4>Select a file to upload:</h4>

<atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />
<atlas:UpdatePanel ID="upResults" runat="server" Mode="conditional">
<Triggers>
<atlas:ControlEventTrigger ControlID="Upload" EventName="Click" />
</Triggers>
<ContentTemplate>
</ContentTemplate>
</atlas:UpdatePanel>
<asp:FileUpload id="FileUpload" runat="server"> </asp:FileUpload>
<br /><br />
<asp:Button id="Upload" Text="Upload file" OnClick="UploadButton_Click" runat="server">
</asp:Button>
<atlas:UpdateProgress ID="uprProgress" runat="server">

<ProgressTemplate>
<img src="images/animated_loading.gif" /> Uploading....
</ProgressTemplate>
</atlas:UpdateProgress>
</form>
</body>
</html>

FileUpload2.aspx.cs

using .....;
public partial class FileUpload2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

protected void UploadButton_Click(object sender, EventArgs e)
{
// Specify the path on the server to save the uploaded file to.
String savePath = @"C:\Temp\uploads\";
// Before attempting to perform operations on the file, verify that the FileUpload control contains a file.
if (FileUpload.HasFile)
{
String fileName = FileUpload.FileName;
savePath += fileName;
// Call the SaveAs method to save the uploaded file to the specified path.
FileUpload.SaveAs(savePath);
// Notify the user of the name of the file was saved under.
// UploadStatusLabel.Text = "Your file was saved as " + fileName;
}
else
{
// Notify the user that a file was not uploaded.
// UploadStatusLabel.Text = "You did not specify a file to upload.";
}
}
}

Any suggestions what might be wrong?

Thanks,
Marko Vuksanovic.

------=_NextPart_000_0019_01C697E8.978EE8D0
Content-Type: text/html; charset=iso-8859-2
Content-Transfer-Encoding: quoted-printable
X-Google-AttachSize: 13449

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1250">
<STYLE></STYLE>

<META content="MSHTML 6.00.5384.4" name=GENERATOR></HEAD>
<BODY id=MailContainerBody
style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-TOP: 15px"
bgColor=#ffffff leftMargin=0 topMargin=0 CanvasTabStop="true" acc_role="text"
name="Compose message area">
<DIV><FONT face=Arial size=2>
<DIV><FONT face=Arial size=2>I used the following code for implementing a file
upload progress indicator, using UpdateProgress Panel, though I have a problem
that FileUpload.Has File always returns false. Any suggestions what might be
wrong?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>
<P><FONT face=Arial>FileUpload2.aspx</FONT></P>
<P>&lt;%</FONT><FONT color=#0000ff size=2>@</FONT><FONT size=2> </FONT><FONT
color=#800000 size=2>Page</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>Language</FONT><FONT color=#0000ff size=2>="C#"</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>AutoEventWireup</FONT><FONT color=#0000ff
size=2>="true"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>CodeFile</FONT><FONT color=#0000ff
size=2>="FileUpload2.aspx.cs"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>Inherits</FONT><FONT color=#0000ff size=2>="FileUpload2"</FONT><FONT
size=2> %&gt;</P></FONT><FONT color=#0000ff size=2>
<P>&lt;!</FONT><FONT color=#800000 size=2>DOCTYPE</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>html</FONT><FONT size=2> </FONT><FONT
color=#ff0000 size=2>PUBLIC</FONT><FONT size=2> </FONT><FONT color=#0000ff
size=2>"-//W3C//DTD XHTML 1.0 Transitional//EN"</FONT><FONT size=2> </FONT><FONT
color=#0000ff
size=2>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</P></FONT><FONT
size=2>
<P></P></FONT><FONT color=#0000ff size=2>
<P>&lt;</FONT><FONT color=#800000 size=2>html</FONT><FONT size=2> </FONT><FONT
color=#ff0000 size=2>xmlns</FONT><FONT color=#0000ff
size=2>="http://www.w3.org/1999/xhtml"</FONT><FONT size=2> </FONT><FONT
color=#0000ff size=2>&gt;<BR>&lt;</FONT><FONT color=#800000
size=2>head</FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2>id</FONT><FONT
color=#0000ff size=2>="Head1"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>runat</FONT><FONT color=#0000ff size=2>="server"&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;</FONT><FONT color=#800000 size=2>title</FONT><FONT
color=#0000ff size=2>&gt;</FONT><FONT size=2> drag </FONT><FONT color=#0000ff
size=2>&lt;/</FONT><FONT color=#800000 size=2>title</FONT><FONT color=#0000ff
size=2>&gt;</P>
<P>&lt;/</FONT><FONT color=#800000 size=2>head</FONT><FONT color=#0000ff
size=2>&gt;<BR>&lt;</FONT><FONT color=#800000 size=2>body</FONT><FONT
color=#0000ff size=2>&gt;</FONT><FONT size=2> </P>
<P></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>form</FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2>id</FONT><FONT
color=#0000ff size=2>="f1"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>enctype</FONT><FONT color=#0000ff
size=2>="multipart/form-data"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>runat</FONT><FONT color=#0000ff size=2>="server"&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;</FONT><FONT color=#800000 size=2>h4</FONT><FONT
color=#0000ff size=2>&gt;</FONT><FONT size=2>Select a file to
upload:</FONT><FONT color=#0000ff size=2>&lt;/</FONT><FONT color=#800000
size=2>h4</FONT><FONT color=#0000ff size=2>&gt;</FONT></P>
<P><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>atlas</FONT><FONT color=#0000ff size=2>:</FONT><FONT color=#800000
size=2>ScriptManager</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>ID</FONT><FONT color=#0000ff size=2>="ScriptManager1"</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>runat</FONT><FONT color=#0000ff
size=2>="server"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>EnablePartialRendering</FONT><FONT color=#0000ff
size=2>="true"</FONT><FONT size=2> </FONT><FONT color=#0000ff
size=2>/&gt;<BR></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>atlas</FONT><FONT color=#0000ff size=2>:</FONT><FONT color=#800000
size=2>UpdatePanel</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>ID</FONT><FONT color=#0000ff size=2>="upResults"</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>runat</FONT><FONT color=#0000ff
size=2>="server"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>Mode</FONT><FONT color=#0000ff size=2>="conditional"&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;</FONT><FONT color=#800000 size=2>Triggers</FONT><FONT
color=#0000ff size=2>&gt;<BR></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT
color=#800000 size=2>atlas</FONT><FONT color=#0000ff size=2>:</FONT><FONT
color=#800000 size=2>ControlEventTrigger</FONT><FONT size=2> </FONT><FONT
color=#ff0000 size=2>ControlID</FONT><FONT color=#0000ff
size=2>="Upload"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>EventName</FONT><FONT color=#0000ff size=2>="Click"</FONT><FONT size=2>
</FONT><FONT color=#0000ff size=2>/&gt;<BR></FONT><FONT color=#0000ff
size=2>&lt;/</FONT><FONT color=#800000 size=2>Triggers</FONT><FONT color=#0000ff
size=2>&gt;<BR></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>ContentTemplate</FONT><FONT color=#0000ff size=2>&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;/</FONT><FONT color=#800000
size=2>ContentTemplate</FONT><FONT color=#0000ff size=2>&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;/</FONT><FONT color=#800000 size=2>atlas</FONT><FONT
color=#0000ff size=2>:</FONT><FONT color=#800000 size=2>UpdatePanel</FONT><FONT
color=#0000ff size=2>&gt;</P></FONT><FONT size=2>
<P></P>
<P></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>asp</FONT><FONT color=#0000ff size=2>:</FONT><FONT color=#800000
size=2>FileUpload</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>id</FONT><FONT color=#0000ff size=2>="FileUpload"</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>runat</FONT><FONT color=#0000ff
size=2>="server"&gt;</FONT><FONT size=2> </FONT><FONT color=#0000ff
size=2>&lt;/</FONT><FONT color=#800000 size=2>asp</FONT><FONT color=#0000ff
size=2>:</FONT><FONT color=#800000 size=2>FileUpload</FONT><FONT color=#0000ff
size=2>&gt;</P></FONT><FONT size=2>
<P></P>
<P></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>br</FONT><FONT size=2> </FONT><FONT color=#0000ff
size=2>/&gt;&lt;</FONT><FONT color=#800000 size=2>br</FONT><FONT size=2>
</FONT><FONT color=#0000ff size=2>/&gt;</P></FONT><FONT size=2>
<P></P>
<P></FONT><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>asp</FONT><FONT color=#0000ff size=2>:</FONT><FONT color=#800000
size=2>Button</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>id</FONT><FONT color=#0000ff size=2>="Upload"</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>Text</FONT><FONT color=#0000ff size=2>="Upload
file" </FONT><FONT color=#ff0000 size=2>OnClick</FONT><FONT color=#0000ff
size=2>="UploadButton_Click" </FONT><FONT color=#ff0000 size=2>runat</FONT><FONT
color=#0000ff size=2>="server"&gt;<BR></FONT><FONT color=#0000ff
size=2>&lt;/</FONT><FONT color=#800000 size=2>asp</FONT><FONT color=#0000ff
size=2>:</FONT><FONT color=#800000 size=2>Button</FONT><FONT color=#0000ff
size=2>&gt;</FONT><FONT size=2> <BR></FONT><FONT color=#0000ff
size=2>&lt;</FONT><FONT color=#800000 size=2>atlas</FONT><FONT color=#0000ff
size=2>:</FONT><FONT color=#800000 size=2>UpdateProgress</FONT><FONT size=2>
</FONT><FONT color=#ff0000 size=2>ID</FONT><FONT color=#0000ff
size=2>="uprProgress"</FONT><FONT size=2> </FONT><FONT color=#ff0000
size=2>runat</FONT><FONT color=#0000ff size=2>="server"&gt;</FONT></P>
<P><FONT color=#0000ff size=2>&lt;</FONT><FONT color=#800000
size=2>ProgressTemplate</FONT><FONT color=#0000ff size=2>&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;</FONT><FONT color=#800000 size=2>img</FONT><FONT
size=2> </FONT><FONT color=#ff0000 size=2>src</FONT><FONT color=#0000ff
size=2>="images/animated_loading.gif"</FONT><FONT size=2> </FONT><FONT
color=#0000ff size=2>/&gt;</FONT><FONT size=2> Uploading....<BR></FONT><FONT
color=#0000ff size=2>&lt;/</FONT><FONT color=#800000
size=2>ProgressTemplate</FONT><FONT color=#0000ff size=2>&gt;<BR></FONT><FONT
color=#0000ff size=2>&lt;/</FONT><FONT color=#800000 size=2>atlas</FONT><FONT
color=#0000ff size=2>:</FONT><FONT color=#800000
size=2>UpdateProgress</FONT><FONT color=#0000ff size=2>&gt;</P></FONT><FONT
size=2>
<P></P>
<P></FONT><FONT color=#0000ff size=2>&lt;/</FONT><FONT color=#800000
size=2>form</FONT><FONT color=#0000ff size=2>&gt;<BR></FONT><FONT color=#0000ff
size=2>&lt;/</FONT><FONT color=#800000 size=2>body</FONT><FONT color=#0000ff
size=2>&gt;<BR>&lt;/</FONT><FONT color=#800000 size=2>html</FONT><FONT
color=#0000ff size=2>&gt;</FONT></P>
<P><FONT color=#000000 size=2>FileUpload2.aspx.cs</FONT></P><FONT color=#0000ff
size=2><FONT color=#0000ff size=2><FONT color=#0000ff size=2>
<P>using</FONT><FONT size=2><FONT color=#000000> .....;</FONT></FONT>
<P><FONT size=2><FONT color=#000000></FONT></P></FONT><FONT color=#0000ff
size=2>public</FONT><FONT color=#000000 size=2> </FONT><FONT color=#0000ff
size=2>partial</FONT><FONT color=#000000 size=2> </FONT><FONT color=#0000ff
size=2>class</FONT><FONT color=#000000 size=2> </FONT><FONT color=#008080
size=2>FileUpload2</FONT><FONT color=#000000 size=2> :
System.Web.UI.</FONT><FONT color=#008080 size=2>Page<BR></FONT><FONT
size=2>{<BR></FONT><FONT color=#0000ff size=2>protected</FONT><FONT size=2>
</FONT><FONT color=#0000ff size=2>void</FONT><FONT size=2>
Page_Load(</FONT><FONT color=#0000ff size=2>object</FONT><FONT size=2> sender,
</FONT><FONT color=#008080 size=2>EventArgs</FONT><FONT size=2> e)<BR>{<BR>}
<P></P>
<P></FONT><FONT color=#0000ff size=2>protected</FONT><FONT size=2> </FONT><FONT
color=#0000ff size=2>void</FONT><FONT size=2> UploadButton_Click(</FONT><FONT
color=#0000ff size=2>object</FONT><FONT size=2> sender, </FONT><FONT
color=#008080 size=2>EventArgs</FONT><FONT size=2> e)<BR>{<BR></FONT><FONT
color=#008000 size=2>// Specify the path on the server to&nbsp;</FONT><FONT
color=#008000 size=2> save the uploaded file to.<BR></FONT><FONT color=#008080
size=2>String</FONT><FONT size=2> savePath = </FONT><FONT color=#800000
size=2>@"C:\Temp\uploads\"</FONT><FONT size=2>;<BR></FONT><FONT color=#008000
size=2>// Before attempting to perform operations&nbsp;</FONT><FONT
color=#008000 size=2> on the file, verify that the FileUpload&nbsp;</FONT><FONT
color=#008000 size=2> control contains a file.<BR></FONT><FONT color=#0000ff
size=2>if</FONT><FONT size=2> (FileUpload.HasFile)<BR>{<BR></FONT><FONT
color=#008080 size=2>String</FONT><FONT size=2> fileName =
FileUpload.FileName;<BR></FONT><FONT size=2>savePath +=
fileName;<BR></FONT><FONT color=#008000 size=2>// Call the SaveAs method to save
the&nbsp;</FONT><FONT color=#008000 size=2> uploaded file to the specified
path.<BR></FONT><FONT size=2>FileUpload.SaveAs(savePath);<BR></FONT><FONT
color=#008000 size=2>// Notify the user of the name of the file</FONT><FONT
color=#008000 size=2> was saved under.<BR>// UploadStatusLabel.Text = "Your file
was saved as " + fileName;<BR></FONT><FONT size=2>}<BR></FONT><FONT
color=#0000ff size=2>else<BR></FONT><FONT size=2>{<BR></FONT><FONT color=#008000
size=2>// Notify the user that a file was not uploaded.<BR>//
UploadStatusLabel.Text = "You did not specify a file to
upload.";<BR></FONT><FONT size=2>}<BR>}<BR>}</P>
<P><FONT face=Arial color=#000000>Any suggestions what might be
wrong?</FONT></P>
<P><FONT face=Arial color=#000000>Thanks,<BR>Marko
Vuksanovic.</FONT></P></FONT></FONT></FONT></DIV></FONT></DIV></BODY></HTML>

------=_NextPart_000_0019_01C697E8.978EE8D0--


Jun 24 '06 #2

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

Similar topics

4
by: Ron | last post by:
I spent the last couple of days setting up a progress indicator for a private site that only does a couple uploads a day. After figuring out there was no way to set the 'upload_tmp_dir' or...
3
by: Frantisek Fuka | last post by:
My application uses ftplib to upload files to remote server. What is the cleanest way to provide progress indicator for long files? What exactly should I override in the ftplib (I am not very...
4
by: Kenneth Keeley | last post by:
Hi, I have a page that uploads files to my server and I wish to display a "Please wait while uploading" page to the user while the file is uploading. I have been able to redirect the user once the...
1
by: Marko Vuksanovic | last post by:
I am trying to implement a file upload progress indicator (doesn't have to be a progress bar) using atlas... I do realize that the indicator cannot be implemented using Update panel control, but is...
6
by: Marko Vuksanovic | last post by:
I am trying to implement a file upload progress indicator (doesn't have to be a progress bar) using atlas... I do realize that the indicator cannot be implemented using Update panel control, but is...
4
by: Marko Vuksanovic | last post by:
I am trying to cause the uplaod button, id="Upload",when clicked, to exectue the onClick event for Button1, id="Button1". <asp:FileUpload id="FileUpload" runat="server"> </asp:FileUpload>...
1
by: M.V. | last post by:
I'm trying to implement a progress indicator using atlas. Note that this indicator does not have to reflect the real progress but just to let the user know that the something is being done so that...
7
by: Shelly | last post by:
I do what most programmers do -- we steal code from stuff we have written before, or accept code from others that works, before we attempt to write something altogether new. On a previous...
10
by: Robertf987 | last post by:
Okay, now then. I'm hoping somebody can help here, pretty please. I want to make a progress bar/indicator on a form. At first I was just going to insert an animated gif, but I've tried and remembered...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
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...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
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: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
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.