473,569 Members | 2,782 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

web.config ignored!?!?!

I have a ASP.Net 2.0 web application that I am trying to debug. Problem is
that I can't get the error message to show in the browser. It always returns
the generic error message telling me to set customErrors="O ff". Problem is I
have already done that.

I have tried to activate tracing as well, by setting trace enabled="true",
but accessing the trace.axd page returns a message instructing me to do just
that.

I have tried to figure out why it is ignoring these settings while still
using the database connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configuratio n xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSettings/>
<connectionStri ngs>
<add name="db" connectionStrin g="Data Source=server;I nitial
Catalog=db;uid= server;password =pwd" providerName="S ystem.Data.SqlC lient"/>
</connectionStrin gs>
<system.web>
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se"
requestLimit="5 0" mostRecent="tru e"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 ,
Culture=neutral , PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B03F5F7F11D50A3 A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
culture="sv-SE" uiCulture="auto "/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>

May 4 '07 #1
13 5352
I may have just missed it, but I didn't see that you'd set the Web.config
settings with
Debug=True

David Wier
MVP/AsPINsider

"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:96******** *************** ***********@mic rosoft.com...
>I have a ASP.Net 2.0 web application that I am trying to debug. Problem is
that I can't get the error message to show in the browser. It always
returns the generic error message telling me to set customErrors="O ff".
Problem is I have already done that.

I have tried to activate tracing as well, by setting trace enabled="true",
but accessing the trace.axd page returns a message instructing me to do
just that.

I have tried to figure out why it is ignoring these settings while still
using the database connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configuratio n
xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSettings/>
<connectionStri ngs>
<add name="db" connectionStrin g="Data Source=server;I nitial
Catalog=db;uid= server;password =pwd" providerName="S ystem.Data.SqlC lient"/>
</connectionStrin gs>
<system.web>
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se"
requestLimit="5 0" mostRecent="tru e"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 ,
Culture=neutral , PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B03F5F7F11D50A3 A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
culture="sv-SE" uiCulture="auto "/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>

May 4 '07 #2
First thing you need to do is ensure that your ASP.NET application is set as
an IIS application, not "just" a virtual directory. Application = web.config
gets parsed.

Second, make sure there aren't any errors in your web.config (e.g., its
well-formed XML).
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Jonny Bergdahl" wrote:
I have a ASP.Net 2.0 web application that I am trying to debug. Problem is
that I can't get the error message to show in the browser. It always returns
the generic error message telling me to set customErrors="O ff". Problem is I
have already done that.

I have tried to activate tracing as well, by setting trace enabled="true",
but accessing the trace.axd page returns a message instructing me to do just
that.

I have tried to figure out why it is ignoring these settings while still
using the database connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configuratio n xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSettings/>
<connectionStri ngs>
<add name="db" connectionStrin g="Data Source=server;I nitial
Catalog=db;uid= server;password =pwd" providerName="S ystem.Data.SqlC lient"/>
</connectionStrin gs>
<system.web>
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se"
requestLimit="5 0" mostRecent="tru e"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 ,
Culture=neutral , PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B03F5F7F11D50A3 A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken= B77A5C561934E08 9"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
culture="sv-SE" uiCulture="auto "/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>
May 4 '07 #3
Do you mean that it is an error to not include the Debug attribute? I want
debug turned off, so I simply removed that attribute.

Regards;
/jb

"David Wier" <dw***@nospam.c omskrev i meddelandet
news:OG******** *****@TK2MSFTNG P06.phx.gbl...
>I may have just missed it, but I didn't see that you'd set the Web.config
settings with
Debug=True

David Wier
MVP/AsPINsider

"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:96******** *************** ***********@mic rosoft.com...
>>I have a ASP.Net 2.0 web application that I am trying to debug. Problem is
that I can't get the error message to show in the browser. It always
returns the generic error message telling me to set customErrors="O ff".
Problem is I have already done that.

I have tried to activate tracing as well, by setting trace
enabled="true" , but accessing the trace.axd page returns a message
instructing me to do just that.

I have tried to figure out why it is ignoring these settings while still
using the database connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configurati on
xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSettings/>
<connectionStr ings>
<add name="db" connectionStrin g="Data Source=server;I nitial
Catalog=db;uid =server;passwor d=pwd"
providerName=" System.Data.Sql Client"/>
</connectionStrin gs>
<system.web>
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se"
requestLimit=" 50" mostRecent="tru e"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken =B77A5C561934E0 89"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 ,
Culture=neutra l, PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken =B03F5F7F11D50A 3A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken =B77A5C561934E0 89"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
culture="sv-SE" uiCulture="auto "/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>

May 9 '07 #4
First thing you need to do is ensure that your ASP.NET application is set
as
an IIS application, not "just" a virtual directory. Application =
web.config
It is. I even deleted the application and recreated it without any change.
Second, make sure there aren't any errors in your web.config (e.g., its
well-formed XML).
I don't think there are any errors in the web.config, as Visual Studio don't
complain when it is loaded. Also; I thought that any web.config errors would
be logged to the event log? Event log stays silent...

Regards;
/jb
"Jonny Bergdahl" wrote:
>I have a ASP.Net 2.0 web application that I am trying to debug. Problem
is
that I can't get the error message to show in the browser. It always
returns
the generic error message telling me to set customErrors="O ff". Problem
is I
have already done that.

I have tried to activate tracing as well, by setting trace
enabled="true" ,
but accessing the trace.axd page returns a message instructing me to do
just
that.

I have tried to figure out why it is ignoring these settings while still
using the database connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configurati on
xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSettings/>
<connectionStri ngs>
<add name="db" connectionStrin g="Data Source=server;I nitial
Catalog=db;uid =server;passwor d=pwd"
providerName=" System.Data.Sql Client"/>
</connectionStrin gs>
<system.web>
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se"
requestLimit=" 50" mostRecent="tru e"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 ,
Culture=neutra l,
PublicKeyToken =B77A5C561934E0 89"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 ,
Culture=neutra l, PublicKeyToken= B77A5C561934E08 9"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken =B03F5F7F11D50A 3A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToken =B77A5C561934E0 89"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
culture="sv-SE" uiCulture="auto "/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>
May 9 '07 #5
re:
!I want debug turned off, so I simply removed that attribute.

The default behavior is debug="false".
You must set it, explicitly, to debug="true" if you want it set to true.

So, you did the correct thing, *if* you want debug set to false.
Removing the attribute sets it to the default behavior, i.e. debug="false".

However, you stated that you *want* debug set to true :

!I have a ASP.Net 2.0 web application that I am trying to debug

If you're trying to debug your ASP.Net 2.0 web application,
you *must* set debug to true explicitly, i.e. : debug="true"


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:F9******** *************** ***********@mic rosoft.com...
Do you mean that it is an error to not include the Debug attribute? I want debug turned off, so I
simply removed that attribute.

Regards;
/jb

"David Wier" <dw***@nospam.c omskrev i meddelandet news:OG******** *****@TK2MSFTNG P06.phx.gbl...
>>I may have just missed it, but I didn't see that you'd set the Web.config settings with
Debug=True

David Wier
MVP/AsPINsider

"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:96******* *************** ************@mi crosoft.com...
>>>I have a ASP.Net 2.0 web application that I am trying to debug. Problem is that I can't get the
error message to show in the browser. It always returns the generic error message telling me to
set customErrors="O ff". Problem is I have already done that.

I have tried to activate tracing as well, by setting trace enabled="true", but accessing the
trace.axd page returns a message instructing me to do just that.

I have tried to figure out why it is ignoring these settings while still using the database
connection string contained, but with no result.

Below is the content of my web.config. Please advice!

Regards;
/jb

---8<-----------------
<?xml version="1.0"?>
<configuratio n xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">
<appSetting s/>
<connectionSt rings>
<add name="db" connectionStrin g="Data Source=server;I nitial Catalog=db;uid= server;password =pwd"
providerName= "System.Data.Sq lClient"/>
</connectionStrin gs>
<system.web >
<customErrors mode="Off"/>
<trace enabled="true" localOnly="fals e" pageOutput="fal se" requestLimit="5 0"
mostRecent="t rue"/>
<compilation>
<assemblies>
<add assembly="Syste m.Windows.Forms , Version=2.0.0.0 , Culture=neutral ,
PublicKeyToke n=B77A5C561934E 089"/>
<add assembly="Syste m.Runtime.Remot ing, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToke n=B77A5C561934E 089"/>
<add assembly="Syste m.Design, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToke n=B03F5F7F11D50 A3A"/>
<add assembly="Syste m.Transactions, Version=2.0.0.0 , Culture=neutral ,
PublicKeyToke n=B77A5C561934E 089"/>
</assemblies>
</compilation>
<authenticati on mode="Forms">
<forms loginUrl="logon .aspx"/>
</authentication>
<authorizatio n>
<deny users="?"/>
</authorization>
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8" culture="sv-SE"
uiCulture="au to"/>
</system.web>
<location path="trace.axd ">
<system.web>
<authorizatio n>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>


May 9 '07 #6
However, you stated that you *want* debug set to true :
!I have a ASP.Net 2.0 web application that I am trying to debug
By "debugging" in this context I just meant "get rid of the bug". To do that
I want to se the error message that the web server won't display to me.

Btw, it is possible to run the application under a debugger even when the
code is not compiled for debug.

Regards;
/jb

May 9 '07 #7
re:
!To do that I want to se the error message that the web server won't display to me.

To be able to see that error message, you need to set <compilation debug="true">.
If you wish to ignore reality I can't help you, nor can anybody else.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:07******** *************** ***********@mic rosoft.com...
>However, you stated that you *want* debug set to true :
!I have a ASP.Net 2.0 web application that I am trying to debug
By "debugging" in this context I just meant "get rid of the bug". To do that I want to se the
error message that the web server won't display to me.
Btw, it is possible to run the application under a debugger even when the code is not compiled for
debug.
Regards;
/jb

May 9 '07 #8
To be able to see that error message, you need to set <compilation
debug="true">.
Besides from using the <compilationt ag for compilation, ASP.NET uses that
flag to change certain runtime behaviour. One of those is how it handles
resources returned to the browser, such as images and style sheets. When
debug is set to true, it telles the browser never to cache the content,
effectively making our application too slow to be usable. This is the reason
the debug flag always should be set to false in a production server.

The debug flag does not, however, make ASP.NET ignore the settings for
<customErrors or <trace>, which you easily can verify by yourself.
If you wish to ignore reality I can't help you, nor can anybody else.
Seems your reality differs wastly from mine, as I have successfully used
both the <customErrorsan d <tracesetting s to get the needed output on our
production servers, where we always have debug set to false.

The issue I am having is with our staging server - any web sites created
there ignores these settings. We have four separate web sites on the server,
all with different IP addresses. I have also mapped Localhost to one of
them, but browsing to http://localhost/trace.axd also displays the "Trace
error" message instructing me to do what I have already done, set tracing to
on.

Regards;
/jb

May 10 '07 #9
Jonny,

could you try, instead of using :

<configuratio n xmlns="http://schemas.microso ft.com/.NetConfigurati on/v2.0">

editing that line to just :

<configuratio n>

If that's the only mistake, that will eliminate the error message.

I know that you're looking for a fuller solution,
but that might enable you to continue working on the app.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Jonny Bergdahl" <jo************ @community.nosp amwrote in message
news:F0******** *************** ***********@mic rosoft.com...
>To be able to see that error message, you need to set <compilation debug="true">.

Besides from using the <compilationt ag for compilation, ASP.NET uses that flag to change certain
runtime behaviour. One of those is how it handles resources returned to the browser, such as
images and style sheets. When debug is set to true, it telles the browser never to cache the
content, effectively making our application too slow to be usable. This is the reason the debug
flag always should be set to false in a production server.

The debug flag does not, however, make ASP.NET ignore the settings for <customErrors or <trace>,
which you easily can verify by yourself.
>If you wish to ignore reality I can't help you, nor can anybody else.

Seems your reality differs wastly from mine, as I have successfully used both the <customErrors >
and <tracesetting s to get the needed output on our production servers, where we always have
debug set to false.

The issue I am having is with our staging server - any web sites created there ignores these
settings. We have four separate web sites on the server, all with different IP addresses. I have
also mapped Localhost to one of them, but browsing to http://localhost/trace.axd also displays the
"Trace error" message instructing me to do what I have already done, set tracing to on.

Regards;
/jb

May 10 '07 #10

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

Similar topics

13
2997
by: Maxim Khesin | last post by:
I want to have a config file with my python proggie, satisfying the following requirements: 1) support key->(value, default) 2) simple and intuitive to read and edit 3) easyly readable into a python datastructure (a dictionary?) 4) not requiring any heavy libraries needed (I am distributing my proggie as a py2exe executable and do not want...
2
2601
by: Thilo Klein | last post by:
Hi, I have a managed app running from an unc path on the local intranet (Full trust is set for this path with the .NET Configuration mmc!). If the applications supplies both a .manifest and a .config file the settings in the config file are completely ignored. When I remove the manifest file the config file gets processed and vice versa. When...
4
2215
by: Jeffrey Palermo [MCP] | last post by:
I use web.config files in many directories, and my aspx files can access the AppSettings. If I have a subdirectory Foo with an aspx, and Foo has a local web.config that defines an AppSetting. My aspx in the Foo directory can properly access this local AppSetting. I understand that web.config files are cumulative as you go deep into the...
8
34596
by: Subra Mallampalli | last post by:
Hi, I am trying to use <runtime> section within the web.config file. However, the contents of the <runtime> section seem to be ignored. What am i missing here? Is <runtime> section not used by web apps? Any help is greatly appreciated. Thanks,
3
6415
by: Ralf Ziller | last post by:
I have a ASP.Net application with web.config files in subfolders. This works fine with the Visual Studio development server. But after publication to an IIS6 webserver a config file inside a subsubfolder is completely ignored, regardless of the settings it defines. Any ideas what could cause this?
3
6022
by: wizofaus | last post by:
I've now created the same setup on four different machines, where I'm changing the processModel section machine.config so that ASP.NET (1.1) runs as SYSTEM, to give it permission to do various things like access the Task Scheduler etc. Three of the machines are using IIS 5.1 and work fine. The 4th machine is using IIS 6.0, and also has...
11
3223
by: meo | last post by:
Can I select version of .NET compiler to run my ASP.NET web application? I thought I can select version of compiler by config in Web.config when I need to change between 1.0 or 1.1 But in ASP.NET 2.0, Can I choose? I see the way to change only in IIS but in Web.config, I cannot see at this moment.
1
3032
by: mattgarvin | last post by:
Hello, my company hosts many websites, and we want to add a Feedback Form (like "Contact Us") that can be re-used on all of them just by "dropping in" a new directory containing the code. My boss told me to make it as modular as possible, and to make it a control we can just drag on to a page. Then he went on vacation for a week. :) I...
2
1729
by: =?Utf-8?B?SmFzbWluZQ==?= | last post by:
Hi, I have a MyApp.exe.config file with some settings, but my program seems to IGNORE it. it looks for MyApp.config instead. changing the exe.config to .config is a bit complicated (windows installer is involved...). any ideas as to WHY it happens or how to FIX it ?
0
7605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7917
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. ...
0
8118
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6277
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...
0
5217
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...
0
3651
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3631
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2105
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
1
1207
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.