473,508 Members | 2,460 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Error calling Path.GetTempFileName(): The directory name is invalid

Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Jul 21 '05 #1
8 17430
Because your TEMP or TMP environment variable (for your web site's account)
is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Jul 21 '05 #2
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's account)
is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.



Jul 21 '05 #3
Most likely it would be the ASPNET user. I'm not sure how to set that user's
environment (without writing code) but first check what the temp directory
is, Path.GetTempPath(). Check if the name is valid and the directory exists
and that ASPNET can write into it (but i think you'd get a different
exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.


Jul 21 '05 #4
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that user's
environment (without writing code) but first check what the temp directory
is, Path.GetTempPath(). Check if the name is valid and the directory exists
and that ASPNET can write into it (but i think you'd get a different
exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.



Jul 21 '05 #5
You need to disable Simple file sharing under Folder Options to be able to
set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know what
might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP". I'm
running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd get
a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:

Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
>Why am I receiving the below error when calling -
>Path.GetTempFileName()
>
>
>The directory name is invalid.
>Description: An unhandled exception occurred during the execution of
>the current web request. Please review the stack trace for more
>information about the error and where it originated in the code.
>
>Exception Details: System.IO.IOException: The directory name is
>invalid.
>


Jul 21 '05 #6
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String
Extention, Boolean AddDateStamp, Boolean AddTimeStamp) in
c:\development\visual studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual
studio projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs:82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:73
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Http Application+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able to
set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know what
might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP". I'm
running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd get
a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
>Because your TEMP or TMP environment variable (for your web site's
>account) is an invalid directory name?
>
>Jerry
>
>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>news:Hp********************@comcast.com...
>
>
>
>>Why am I receiving the below error when calling -
>>Path.GetTempFileName()
>>
>>
>>The directory name is invalid.
>>Description: An unhandled exception occurred during the execution of
>>the current web request. Please review the stack trace for more
>>information about the error and where it originated in the code.
>>
>>Exception Details: System.IO.IOException: The directory name is
>>invalid.
>>
>
>
>



Jul 21 '05 #7
Unless you changed the default directory structure there's one directory too
much in that path. I don't think that \ATCS\ should be there, that is unless
you moved your profiles from C:\Documents and Settings\ to C:\Documents and
Settings\ATCS\. If you didn't there's your problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:JM********************@comcast.com...
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info
below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String Extention,
Boolean AddDateStamp, Boolean AddTimeStamp) in c:\development\visual
studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual studio
projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs:82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:73
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Http Application+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able
to set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know
what might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:

Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd
get a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
>Wouldn't that be the ASPNET user?
>If so how do I set the environment for that User?
>
>
>Jerry Pisk wrote:
>
>
>>Because your TEMP or TMP environment variable (for your web site's
>>account) is an invalid directory name?
>>
>>Jerry
>>
>>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>>news:Hp********************@comcast.com...
>>
>>
>>
>>>Why am I receiving the below error when calling -
>>>Path.GetTempFileName()
>>>
>>>
>>>The directory name is invalid.
>>>Description: An unhandled exception occurred during the execution of
>>>the current web request. Please review the stack trace for more
>>>information about the error and where it originated in the code.
>>>
>>>Exception Details: System.IO.IOException: The directory name is
>>>invalid.
>>>
>>
>>
>>


Jul 21 '05 #8
ATCS is this computers name, I didn't move any user profiles. The other
users profiles on this machine are just under Document and Settings,
ASPNET is the only one under ATCS. GetTempPath returns the correct
path, I mean C:\Documents and Settngs\ATCS..., so why would
GetTempFileName return an error... It doesn't make any sense. Do you
know how to change the Temp path for a specific user running XP?
Jerry Pisk wrote:
Unless you changed the default directory structure there's one directory too
much in that path. I don't think that \ATCS\ should be there, that is unless
you moved your profiles from C:\Documents and Settings\ to C:\Documents and
Settings\ATCS\. If you didn't there's your problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:JM********************@comcast.com...
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info
below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String Extention,
Boolean AddDateStamp, Boolean AddTimeStamp) in c:\development\visual
studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual studio
projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs: 82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:7 3
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Ht tpApplication+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able
to set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know
what might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
>Most likely it would be the ASPNET user. I'm not sure how to set that
>user's environment (without writing code) but first check what the temp
>directory is, Path.GetTempPath(). Check if the name is valid and the
>directory exists and that ASPNET can write into it (but i think you'd
>get a different exception if it was a permission issue).
>
>Jerry
>
>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>news:ZP********************@comcast.com...
>
>
>
>>Wouldn't that be the ASPNET user?
>>If so how do I set the environment for that User?
>>
>>
>>Jerry Pisk wrote:
>>
>>
>>
>>>Because your TEMP or TMP environment variable (for your web site's
>>>account) is an invalid directory name?
>>>
>>>Jerry
>>>
>>>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>>>news:Hp********************@comcast.com.. .
>>>
>>>
>>>
>>>
>>>>Why am I receiving the below error when calling -
>>>>Path.GetTempFileName()
>>>>
>>>>
>>>>The directory name is invalid.
>>>>Description: An unhandled exception occurred during the execution of
>>>>the current web request. Please review the stack trace for more
>>>>information about the error and where it originated in the code.
>>>>
>>>>Exception Details: System.IO.IOException: The directory name is
>>>>invalid.
>>>>
>>>
>>>
>>>



Jul 21 '05 #9

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

Similar topics

1
5011
by: Wayno | last post by:
My php logs are coming up empty. I have done all I can think of, and all that made sense to me. Can someone take a look at my php.ini please and tell me what you think may be the problem. I...
4
6186
by: ScottH | last post by:
I am running 7.2 with fixpack 10a under W2K. I got a backup from someone else in an attempt to debug a data issue. The other person created the database with UTF-8 (codepage 1208), so I created a...
2
5672
by: Bragadiru | last post by:
I tried to use : System::String* outFile = System::IO::Path::GetTempFileName(); but I get this compile error: error C2039: 'GetTempFileNameA' : is not a member of 'System::IO::Path' I found...
9
3184
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My...
8
952
by: Glenn A. Harlan | last post by:
Why am I receiving the below error when calling - Path.GetTempFileName() The directory name is invalid. Description: An unhandled exception occurred during the execution of the current web...
0
3693
by: ruju00 | last post by:
I am getting an error in Login() method of the following class FtpConnection public class FtpConnection { public class FtpException : Exception { public FtpException(string message) :...
0
23446
by: HKSHK | last post by:
This list compares the error codes used in VB.NET 2003 with those used in VB6. Error Codes: ============ 3: This Error number is obsolete and no longer used. (Formerly: Return without GoSub)...
2
3360
by: teddybyte | last post by:
my script below is: #include "stdafx.h" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, ...
6
4144
by: tgnelson85 | last post by:
Hello, C question here (running on Linux, though there should be no platform specific code). After reading through a few examples, and following one in a book, for linked lists i thought i would...
0
7321
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,...
0
7377
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7034
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7488
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...
0
5623
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,...
0
4702
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...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1544
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 ...
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.