473,786 Members | 2,775 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to upload an image in asp.net

hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?

Nov 17 '05 #1
6 12133
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub
Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?

Nov 17 '05 #2
Is it possible to make this work for uploading folders as well?

Michael Murray
InterWorks Software, Inc.

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message news:up******** ******@TK2MSFTN GP11.phx.gbl...
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub


Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?


Nov 17 '05 #3
I followed the instructions but I am having a problem when the following code is executed:
Dim iLength As Integer = CType(File1.Pos tedFile.InputSt ream.Length, Integer)
I debugged the code and I found out that
File1.Value = "C:\Documen ts and Settings\Owner\ My Documents\Word\ Test File.doc"
File1.PostedFil e = nothing

The error message is "System.NullRef erenceException : Object reference not set to an instance of an object". Am I correct in assuming that this is because File1.PostedFil e has a value of nothing? What might I do to corret this problem.

Best,
Alex

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message news:up******** ******@TK2MSFTN GP11.phx.gbl...
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub


Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?


Nov 17 '05 #4
I followed the instructions but I am having a problem when the following code is executed:
Dim iLength As Integer = CType(File1.Pos tedFile.InputSt ream.Length, Integer)
I debugged the code and I found out that
File1.Value = "C:\Documen ts and Settings\Owner\ My Documents\Word\ Test File.doc"
File1.PostedFil e = nothing

The error message is "System.NullRef erenceException : Object reference not set to an instance of an object". Am I correct in assuming that this is because File1.PostedFil e has a value of nothing? What might I do to corret this problem.

Best,
Alex

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message news:up******** ******@TK2MSFTN GP11.phx.gbl...
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub


Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?


Nov 17 '05 #5
Hello All,
The problem with File1.PostedFil e = Nothing can be resolved by adding adding "enctype" to your form like so:

<form id="Form1" method="post" runat="server" enctype="multip art/form-data">
"Alex Munk" <am***@hotmail. com> wrote in message news:27******** **********@news 02.bloor.is.net .cable.rogers.c om...
I followed the instructions but I am having a problem when the following code is executed:
Dim iLength As Integer = CType(File1.Pos tedFile.InputSt ream.Length, Integer)
I debugged the code and I found out that
File1.Value = "C:\Documen ts and Settings\Owner\ My Documents\Word\ Test File.doc"
File1.PostedFil e = nothing

The error message is "System.NullRef erenceException : Object reference not set to an instance of an object". Am I correct in assuming that this is because File1.PostedFil e has a value of nothing? What might I do to corret this problem.

Best,
Alex

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message news:up******** ******@TK2MSFTN GP11.phx.gbl...
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub


Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?


Nov 17 '05 #6
Hello All,
The problem with File1.PostedFil e = Nothing can be resolved by adding adding "enctype" to your form like so:

<form id="Form1" method="post" runat="server" enctype="multip art/form-data">
"Alex Munk" <am***@hotmail. com> wrote in message news:27******** **********@news 02.bloor.is.net .cable.rogers.c om...
I followed the instructions but I am having a problem when the following code is executed:
Dim iLength As Integer = CType(File1.Pos tedFile.InputSt ream.Length, Integer)
I debugged the code and I found out that
File1.Value = "C:\Documen ts and Settings\Owner\ My Documents\Word\ Test File.doc"
File1.PostedFil e = nothing

The error message is "System.NullRef erenceException : Object reference not set to an instance of an object". Am I correct in assuming that this is because File1.PostedFil e has a value of nothing? What might I do to corret this problem.

Best,
Alex

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message news:up******** ******@TK2MSFTN GP11.phx.gbl...
Drag a file field control from the HTML section of your toolbar onto your form.
Right click on it and make sure it's set to run as a server control.
Also drag a button onto your control to begin the upload.
Here's the code that goes under the button. This code will work to upload any file type, not just images.

Private Sub btnAttach_Click (ByVal sender As System.Object, _

ByVal e As System.EventArg s) Handles btnAttach.Click

Dim iLength As Integer = _ CType(File1.Pos tedFile.InputSt ream.Length, Integer)

If iLength = 0 Then Exit Sub 'not a valid file

Dim sContentType As String = File1.PostedFil e.ContentType

Dim sFileName As String, i As Integer

Dim bytContent As Byte()

ReDim bytContent(iLen gth) 'byte array, set to file size



'strip the path off the filename

i = InStrRev(File1. PostedFile.File Name.Trim, "\")

If i = 0 Then

sFileName = File1.PostedFil e.FileName.Trim

Else

sFileName = Right(File1.Pos tedFile.FileNam e.Trim, Len(File1.Poste dFile.FileName. Trim) - i)

End If



Try

File1.PostedFil e.InputStream.R ead(bytContent, 0, iLength)

With cmdInsertAttach ment

.Parameters("@F ileName").Value = sFileName

.Parameters("@F ileSize").Value = iLength

.Parameters("@F ileData").Value = bytContent

.Parameters("@C ontentType").Va lue = sContentType

.ExecuteNonQuer y()

End With

Catch ex As Exception

'Handle your database error here

dbConn.Close()

End Try

Response.Redire ct(Request.Url. ToString) 'Refresh page

End Sub


Here's the SQL Query that the above code uses:
INSERT INTO tblAttachments

(FileName, FileSize, FileData, ContentType)

VALUES (@FileName, @FileSize, @FileData, @ContentType)

Here's more info:
http://www.aspnetpro.com/features/20...200307so_f.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net


"Varun_789" <va*******@yaho o.com> wrote in message news:04******** *************** *****@phx.gbl.. .
hello friends,
i am developing an application in which i want to
upload an image from clients hard drive(local hard drive)
to the server.

i mean the application should provide the user with the
the faliclity to click on LoadPic button to open a
Open File Dialog on his/her system, then allows the user
to browse to the actually image and once the user is done,
by clicking on Send button, sends the image to the server
database.

i have SQL Server 2000 as RDBMS.

how can i accomplish this is ASP.NET ?


Nov 17 '05 #7

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

Similar topics

3
11765
by: dave | last post by:
Hello there, I am at my wit's end ! I have used the following script succesfully to upload an image to my web space. But what I really want to be able to do is to update an existing record in a table in MySQL with the path & filename to the image. I have successfully uploaded and performed an update query on the database, but the problem I have is I cannot retain the primary key field in a variable which is then used in a SQL update...
15
5366
by: David Lozzi | last post by:
Howdy, I have a function that uploads an image and that works great. I love ..Nets built in upload, so much easier than 3rd party uploaders! Now I am making a public function that will take the path of the uploaded image, and resize it with the provided dimensions. My function is below. The current function is returning an error when run from the upload function: A generic error occurred in GDI+. Not sure what exactly that means. From what...
0
4754
by: SEMIH DEMIR | last post by:
Sitelerden birinde verilen yabancı kaynakli bir scriptti duzenledim yanlız birseyin içinden bir turlu cıkamadım işin aslı ilk defa persistin upload componentini kullanacam yanlız suanki haliyle verdiği hata şu.Bilen arkadaşlar lütfen yardım edin Persits.Upload.1 error '800a0020' The system cannot find the path specified. /classifieds/upload.asp, line 250
4
5899
by: Jim Michaels | last post by:
after a file upload, $_FILES is not populated but $_POST is. what's going on here? $_POST=C $_POST=C $_POST=C $_POST=C:\\www\\jimm\\images\\bg1.jpg $_FILES= $_FILES= $_FILES=
9
3840
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web site for a small club I belong to and one of the features I would like to include is the ability to allow users to upload image files. unfortunately the servers web root www folder only allows READ and EXECUTE permissions, which makes it...
3
4514
by: kksandeep | last post by:
i am using this three files to uplod file. i got this file from net but i think these have some error. i am new to this field plz help the script i found is some helpful but not too that i need my objective is this that when i uplod a file it should be desply on same page with ajax uplod after when i refresh page this should be not remains longer and on clicking other image its replase previous image plz help how i can do this the...
1
3956
by: kksandeep | last post by:
i am using this three files to uplod file. i got this file from net but i think these have some error. i am new to this field plz help the script i found is some helpful but not too that i need my objective is this that when i uplod a file it should be desply on same page with ajax uplod after when i refresh page this should be not remains longer and on clicking other image its replase previous image plz help how i can do this the...
7
2366
by: xx75vulcan | last post by:
Hi, I've got a PHP Upload Form that works great, unless that is, the image your uploading has been modified through a photo editing software. Example: if I upload the image straight from a camera or other, it uploads fine. However, If I want to rotate the image, or resize it with photoshop or simmilar, making sure to save it again as a jpg, the PHP upload won't upload the image.
7
17058
by: mishrarajesh44 | last post by:
hii all Truly telling i hav got this code from net & i am finding error while running the code below.. code:- <?php $idir = "photo/"; // Path To Images Directory $tdir = "photo/thumbs/"; // Path To Thumbnails Directory $twidth = "125"; // Maximum Width For Thumbnail Images
1
4884
by: chennaibala | last post by:
can any one send me mutiple image upload program and save the file name with extension in mysql table.we must cheak uploaded file type like bmp or any image file while uploading. i develop program,which can upload many file in folder.problem is,am unable to save my file name in to database.because i used same name for all input file type as file. i dont know get name of file.below i presented my coding for ur view.fed up with my coding..pls...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10110
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
9962
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
8992
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
7515
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
6748
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4067
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
2894
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.