Ask a Question related to ASP.NET General, Design and Development.
-
Carl Howarth #1
ASP.NET Deployment - I canny do it!
Hello again everyone..... I'm a real pain and keep posting re the same
thing, but it is possibly the most frustrating issue I've come across.
Please see my original post - can anybody think of a solution to this? The
main error I experience is an sqlexception saying 'General Network Error',
but as this is sporadic, and due to the fact that asp3 apps work fine I am
at a total loss as to what the issue can be.
In addition to this I connect to the database using the following:
The connections in the current activity (SQL) show as 'sleeping', which
suggests
to me that the connections have been closed.
I am using a component to access the database, based on the following:
Public ReadOnly Property ConnectionString()
Get
ConnectionString = "Data Source=10.200.20.2; Initial Catalog=ClientCAS;User
ID=sa;Password=password; Network Library=dbmssocn;"
End Get
End Property
Public Function GetReader(ByVal strSQL As String) As SqlDataReader
Dim tmpConn As New SqlConnection(Me.ConnectionString)
Dim objCmd As New SqlCommand(strSQL, tmpConn)
objCmd.Connection.Open()
objCmd.CommandTimeout = 300
GetReader = objCmd.ExecuteReader(CommandBehavior.CloseConnecti on)
objCmd = Nothing
End Function
And then within my pages' back end code I would do something along these
lines to fill, say, a datagrid:
dim obj as new cpData
dim dr as sqldatareader = obj.GetReader("spStoredProc " & id)
dg.datasource = dr
dg.databind
dr.close
dr = nothing
obj = nothing
---------------------->
Hi Gregory,
Thanks for coming back to me. I am at a loss with this but will run some
checks as you have suggested. The network issue really is confusing,
certainly since the 'classic' asp applications that we are running do not
experience this problem at all.
Whilst testing, I have noticed that if I log into the system and jump
between pages at frequent intervals it seems to work perfectly. It seems
that if I leave a page displayed for any length of time then choose another
lin k that is when the system freezes up - I don't know if that gives you
any further clues. I have altered the web.config file to say debug="false",
which has made no difference and have checked the code and I certainly
believe that all objects used are being destroyed after use.
Another clue that may help is that part of the system is 'upgraded' classic
asp, ie we have simply converted the existing asp pages and got rid of the
'set' commands, used isdbnull instead of isnull, and have set aspcompat
accordingly (only on converted pages), I cannot see this as being an issue
due to the fact that these all work wonderfully on my machine.
If you have any other ideas (or not!) in relation to this please let me
know.
Many thanks again, Carl
"Cowboy (Gregory A. Beamer)" <NoSpamMgbworld@comcast.netRemuvThis> wrote in
message news:%23nYjrDOXDHA.1004@TK2MSFTNGP12.phx.gbl...can> I don't believe in unpredictable in computers, so it is predictable, but
> unknown.
>
> I would suggest profiling both the machine and the application. Tracingserver> help some, but you are going to have to examine what the machine is doing
> when the app is running (along with what other apps are running and what
> they are doing).
>
> The topology of the network can also be a major influence. If you webyour> has to talk to the database via a firewall, it is at a disavantage from************************************************** **************************> XP dev box. So, the DMZ can affect your app. You need to know what it is
> doing when it has a problem (down to the line of code possibly, which is
> easiest done with logging (which slows down the app while it is
> instituted)).
>
> I wish I had an easy answer, but there are a lot of variables here.
>
> --
> Gregory A. Beamer
> MVP; MCP: +I, SE, SD, DBA
> Author: ADO.NET and XML: ASP.NET on the Edge
>
>************************************************** **************************> ****
> Think Outside the Box!
>'General> ****
> "Carl Howarth" <carl.howarth@m-s-solutions.co.uk> wrote in message
> news:OClO$tNXDHA.2392@TK2MSFTNGP10.phx.gbl...> > Sorry to repost, but I am fairly desparate to get this issue resolved!
> >
> > Please see below, when it hangs if I leave it long enough I get arunning> servers> > Network Error', or something similar. Could this be down to the web> > being on the DMZ, or perhaps some configuration value in the web.config
> > file?
> >
> > Any help would really be appreciated as I am due to put the system live
> > ASAP.
> >
> > Many thanks, Carl Howarth
> >
> >
> > Hi,
> >
> > We have developed a system using VS.NET 2003 in ASP.NET (vb). The system
> > runs absolutely fine on my own and my colleague's machine. We arewill> .net> > Win XP Pro. We have 2 web servers, each of which have been upgraded to> > 1.1, and have all the latest updates from windows update.
> >
> > When we deploy the application to either web server the performance is
> > ridiculous (the servers run asp3 systems fine). Sometimes the systemwill> > work like a dream, moving from page to page in an instant, others it> our> > just hang when a link is selected (even to pages that are not accessing> let> > database). It's nothing to do with connections being left open and it's
> > bizarre how the issues are completely unpredictable. The systems are
> > transferred simply by copying the contents of the web site folder on our
> > machines to the web site folder on the server(s).
> >
> > Has anybody come across this kind of situation and if so, please please>> > me know how to get around it!
> >
> > Thanks very much,
> >
> > Carl Howarth
> > [email]carl.howarth@m-s-solutions.co.uk[/email]
> >
> >
>
Carl Howarth Guest
-
Deployment
What's the best way in ASP .Net to deploy an app from a development machine to a production machine? Also, do all files (.vbproj, etc) need to be... -
MX7 and jar deployment
In MX6.1 we were deploying java components by simply dropping a jar file to CFusionMX\wwwroot\WEB-INF\lib folder and then restarting CF Server... -
Deployment Q
If you have an ASPX app which calls a WebSvc do you need to deploy the WebReference folder or not? bin\foo.dll foo.aspx webREference? needed or... -
Help with Deployment!
I have a web service running fine on my dev machine, and on a server on my network. When I try to deploy it to a client, when I browse the ASMX... -
Web App Deployment
I ran into this problem, and tried everything that everyone suggested. After carefully debugging the installer with a series of message boxes, I... -
Ravikanth[MVP] #2
ASP.NET Deployment - I canny do it!
Hi
Try to change your SQL Statement by adding/removing ORDER
BY, WHERE..... if it solves the problem, it means that
your sql statement does not return data in the normal
manner.... i.e. slower than ADO.NET expect.
2. If you are using simultanious connections, you might
have some problem about connection pooling, try to add
Pooling=false in Sql connection string. If this is the
problem, make sure that you use the exact same Sql
statement everywhere......
3. But if you are using Trusted Connection and set
pooling to true right now, but you also set
impersonation=true. The problem is that it will login
using different accounts causing the connection pool to
be useless. You might either use SQL account or set
Pooling = false in the connection string to solve the
problem.
Check out the following URL
also:[url]http://forums.devshed.com/archive/52/2003/01/4/49612[/url]
Ravikanth[MVP]
posting re the same>-----Original Message-----
>Hello again everyone..... I'm a real pain and keepI've come across.>thing, but it is possibly the most frustrating issuesolution to this? The>Please see my original post - can anybody think of asaying 'General Network Error',>main error I experience is an sqlexceptionapps work fine I am>but as this is sporadic, and due to the fact that asp3following:>at a total loss as to what the issue can be.
>
>In addition to this I connect to the database using theas 'sleeping', which>
>The connections in the current activity (SQL) showthe following:>suggests
>to me that the connections have been closed.
>
>I am using a component to access the database, based onCatalog=ClientCAS;User>Public ReadOnly Property ConnectionString()
>
>Get
>
>ConnectionString = "Data Source=10.200.20.2; InitialSqlDataReader>ID=sa;Password=password; Network Library=dbmssocn;"
>
>End Get
>
>End Property
>
>
>Public Function GetReader(ByVal strSQL As String) As(CommandBehavior.CloseConnection)>
>Dim tmpConn As New SqlConnection(Me.ConnectionString)
>
>Dim objCmd As New SqlCommand(strSQL, tmpConn)
>
>objCmd.Connection.Open()
>
>objCmd.CommandTimeout = 300
>
>GetReader = objCmd.ExecuteReadersomething along these>
>objCmd = Nothing
>
>End Function
>
>
>And then within my pages' back end code I would do& id)>lines to fill, say, a datagrid:
>
>dim obj as new cpData
>dim dr as sqldatareader = obj.GetReader("spStoredProc "but will run some>dg.datasource = dr
>dg.databind
>dr.close
>dr = nothing
>obj = nothing
>
>---------------------->
>Hi Gregory,
>
>Thanks for coming back to me. I am at a loss with thisis confusing,>checks as you have suggested. The network issue reallyare running do not>certainly since the 'classic' asp applications that wesystem and jump>experience this problem at all.
>
>Whilst testing, I have noticed that if I log into theperfectly. It seems>between pages at frequent intervals it seems to workthen choose another>that if I leave a page displayed for any length of timeif that gives you>lin k that is when the system freezes up - I don't knowto say debug="false",>any further clues. I have altered the web.config fileand I certainly>which has made no difference and have checked the codeuse.>believe that all objects used are being destroyed afteris 'upgraded' classic>
>Another clue that may help is that part of the systemand got rid of the>asp, ie we have simply converted the existing asp pageshave set aspcompat>'set' commands, used isdbnull instead of isnull, andas being an issue>accordingly (only on converted pages), I cannot see thismachine.>due to the fact that these all work wonderfully on mythis please let me>
>If you have any other ideas (or not!) in relation to<NoSpamMgbworld@comcast.netRemuvThis> wrote in>know.
>
>Many thanks again, Carl
>
>
>"Cowboy (Gregory A. Beamer)"is predictable, but>message news:%23nYjrDOXDHA.1004@TK2MSFTNGP12.phx.gbl...>> I don't believe in unpredictable in computers, so itapplication. Tracing>> unknown.
>>
>> I would suggest profiling both the machine and thethe machine is doing>can>> help some, but you are going to have to examine whatare running and what>> when the app is running (along with what other appsinfluence. If you web>> they are doing).
>>
>> The topology of the network can also be a majordisavantage from>server>> has to talk to the database via a firewall, it is at ato know what it is>your>> XP dev box. So, the DMZ can affect your app. You needpossibly, which is>> doing when it has a problem (down to the line of codewhile it is>> easiest done with logging (which slows down the appvariables here.>> instituted)).
>>
>> I wish I had an easy answer, but there are a lot of*******************>************************************************* ********>>
>> --
>> Gregory A. Beamer
>> MVP; MCP: +I, SE, SD, DBA
>> Author: ADO.NET and XML: ASP.NET on the Edge
>>
>>*******************>************************************************* ********>> ****
>> Think Outside the Box!
>>wrote in message>> ****
>> "Carl Howarth" <carl.howarth@m-s-solutions.co.uk>this issue resolved!>> news:OClO$tNXDHA.2392@TK2MSFTNGP10.phx.gbl...>> > Sorry to repost, but I am fairly desparate to getenough I get a>> >
>> > Please see below, when it hangs if I leave it longdown to the web>'General>> > Network Error', or something similar. Could this bevalue in the web.config>> servers>> > being on the DMZ, or perhaps some configurationput the system live>> > file?
>> >
>> > Any help would really be appreciated as I am due toASP.NET (vb). The system>> > ASAP.
>> >
>> > Many thanks, Carl Howarth
>> >
>> >
>> > Hi,
>> >
>> > We have developed a system using VS.NET 2003 inmachine. We are>> > runs absolutely fine on my own and my colleague'shave been upgraded to>running>> > Win XP Pro. We have 2 web servers, each of whichupdate.>> .net>> > 1.1, and have all the latest updates from windowsthe performance is>> >
>> > When we deploy the application to either web serverSometimes the system>> > ridiculous (the servers run asp3 systems fine).instant, others it>will>> > work like a dream, moving from page to page in anthat are not accessing>will>> > just hang when a link is selected (even to pagesbeing left open and it's>> our>> > database). It's nothing to do with connectionsunpredictable. The systems are>> > bizarre how the issues are completelyweb site folder on our>> > transferred simply by copying the contents of theif so, please please>> > machines to the web site folder on the server(s).
>> >
>> > Has anybody come across this kind of situation and>>> let>>>> > me know how to get around it!
>> >
>> > Thanks very much,
>> >
>> > Carl Howarth
>> > [email]carl.howarth@m-s-solutions.co.uk[/email]
>> >
>> >
>>
>
>
>.
>Ravikanth[MVP] Guest
-
John Saunders #3
Re: ASP.NET Deployment - I canny do it!
Carl, my idea is that this may be an ADO.NET issue and not an ASP.NET issue.
Perhaps you should post to
microsoft.public.dotnet.framework.adonet?
--
John Saunders
Internet Engineer
[email]john.saunders@surfcontrol.com[/email]
"Carl Howarth" <carl.howarth@m-s-solutions.co.uk> wrote in message
news:esjSTkZXDHA.1580@tk2msftngp13.phx.gbl...The> Hello again everyone..... I'm a real pain and keep posting re the same
> thing, but it is possibly the most frustrating issue I've come across.
> Please see my original post - can anybody think of a solution to this?Catalog=ClientCAS;User> main error I experience is an sqlexception saying 'General Network Error',
> but as this is sporadic, and due to the fact that asp3 apps work fine I am
> at a total loss as to what the issue can be.
>
> In addition to this I connect to the database using the following:
>
> The connections in the current activity (SQL) show as 'sleeping', which
> suggests
> to me that the connections have been closed.
>
> I am using a component to access the database, based on the following:
> Public ReadOnly Property ConnectionString()
>
> Get
>
> ConnectionString = "Data Source=10.200.20.2; Initialanother> ID=sa;Password=password; Network Library=dbmssocn;"
>
> End Get
>
> End Property
>
>
> Public Function GetReader(ByVal strSQL As String) As SqlDataReader
>
> Dim tmpConn As New SqlConnection(Me.ConnectionString)
>
> Dim objCmd As New SqlCommand(strSQL, tmpConn)
>
> objCmd.Connection.Open()
>
> objCmd.CommandTimeout = 300
>
> GetReader = objCmd.ExecuteReader(CommandBehavior.CloseConnecti on)
>
> objCmd = Nothing
>
> End Function
>
>
> And then within my pages' back end code I would do something along these
> lines to fill, say, a datagrid:
>
> dim obj as new cpData
> dim dr as sqldatareader = obj.GetReader("spStoredProc " & id)
> dg.datasource = dr
> dg.databind
> dr.close
> dr = nothing
> obj = nothing
>
> ---------------------->
> Hi Gregory,
>
> Thanks for coming back to me. I am at a loss with this but will run some
> checks as you have suggested. The network issue really is confusing,
> certainly since the 'classic' asp applications that we are running do not
> experience this problem at all.
>
> Whilst testing, I have noticed that if I log into the system and jump
> between pages at frequent intervals it seems to work perfectly. It seems
> that if I leave a page displayed for any length of time then choosedebug="false",> lin k that is when the system freezes up - I don't know if that gives you
> any further clues. I have altered the web.config file to sayclassic> which has made no difference and have checked the code and I certainly
> believe that all objects used are being destroyed after use.
>
> Another clue that may help is that part of the system is 'upgraded'in> asp, ie we have simply converted the existing asp pages and got rid of the
> 'set' commands, used isdbnull instead of isnull, and have set aspcompat
> accordingly (only on converted pages), I cannot see this as being an issue
> due to the fact that these all work wonderfully on my machine.
>
> If you have any other ideas (or not!) in relation to this please let me
> know.
>
> Many thanks again, Carl
>
>
> "Cowboy (Gregory A. Beamer)" <NoSpamMgbworld@comcast.netRemuvThis> wrotedoing> message news:%23nYjrDOXDHA.1004@TK2MSFTNGP12.phx.gbl...> can> > I don't believe in unpredictable in computers, so it is predictable, but
> > unknown.
> >
> > I would suggest profiling both the machine and the application. Tracing> > help some, but you are going to have to examine what the machine is************************************************** **************************> server> > when the app is running (along with what other apps are running and what
> > they are doing).
> >
> > The topology of the network can also be a major influence. If you web> your> > has to talk to the database via a firewall, it is at a disavantage from>> > XP dev box. So, the DMZ can affect your app. You need to know what it is
> > doing when it has a problem (down to the line of code possibly, which is
> > easiest done with logging (which slows down the app while it is
> > instituted)).
> >
> > I wish I had an easy answer, but there are a lot of variables here.
> >
> > --
> > Gregory A. Beamer
> > MVP; MCP: +I, SE, SD, DBA
> > Author: ADO.NET and XML: ASP.NET on the Edge
> >
> >************************************************** **************************>> > ****
> > Think Outside the Box!
> >web.config> 'General> > ****
> > "Carl Howarth" <carl.howarth@m-s-solutions.co.uk> wrote in message
> > news:OClO$tNXDHA.2392@TK2MSFTNGP10.phx.gbl...> > > Sorry to repost, but I am fairly desparate to get this issue resolved!
> > >
> > > Please see below, when it hangs if I leave it long enough I get a> > servers> > > Network Error', or something similar. Could this be down to the web> > > being on the DMZ, or perhaps some configuration value in thelive> > > file?
> > >
> > > Any help would really be appreciated as I am due to put the systemsystem> > > ASAP.
> > >
> > > Many thanks, Carl Howarth
> > >
> > >
> > > Hi,
> > >
> > > We have developed a system using VS.NET 2003 in ASP.NET (vb). Theto> running> > > runs absolutely fine on my own and my colleague's machine. We are> > > Win XP Pro. We have 2 web servers, each of which have been upgradedaccessing> will> > .net> > > 1.1, and have all the latest updates from windows update.
> > >
> > > When we deploy the application to either web server the performance is
> > > ridiculous (the servers run asp3 systems fine). Sometimes the system> will> > > work like a dream, moving from page to page in an instant, others it> > > just hang when a link is selected (even to pages that are notit's> > our> > > database). It's nothing to do with connections being left open andour> > > bizarre how the issues are completely unpredictable. The systems are
> > > transferred simply by copying the contents of the web site folder onplease> > > machines to the web site folder on the server(s).
> > >
> > > Has anybody come across this kind of situation and if so, please>> > let> >> > > me know how to get around it!
> > >
> > > Thanks very much,
> > >
> > > Carl Howarth
> > > [email]carl.howarth@m-s-solutions.co.uk[/email]
> > >
> > >
> >
>
>
John Saunders Guest
-
Carl Howarth #4
Re: ASP.NET Deployment - I canny do it!
Ravikanth,
Point 2 has made the system work - which is good.... However what will
happen when I start to get numerous users of the system?
Many thanks, Carl
"Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in message
news:07b101c35d9d$ba7e3db0$a601280a@phx.gbl...> Hi
>
> Try to change your SQL Statement by adding/removing ORDER
> BY, WHERE..... if it solves the problem, it means that
> your sql statement does not return data in the normal
> manner.... i.e. slower than ADO.NET expect.
>
> 2. If you are using simultanious connections, you might
> have some problem about connection pooling, try to add
> Pooling=false in Sql connection string. If this is the
> problem, make sure that you use the exact same Sql
> statement everywhere......
>
> 3. But if you are using Trusted Connection and set
> pooling to true right now, but you also set
> impersonation=true. The problem is that it will login
> using different accounts causing the connection pool to
> be useless. You might either use SQL account or set
> Pooling = false in the connection string to solve the
> problem.
>
>
> Check out the following URL
> also:[url]http://forums.devshed.com/archive/52/2003/01/4/49612[/url]
>
> Ravikanth[MVP]
>
>> posting re the same> >-----Original Message-----
> >Hello again everyone..... I'm a real pain and keep> I've come across.> >thing, but it is possibly the most frustrating issue> solution to this? The> >Please see my original post - can anybody think of a> saying 'General Network Error',> >main error I experience is an sqlexception> apps work fine I am> >but as this is sporadic, and due to the fact that asp3> following:> >at a total loss as to what the issue can be.
> >
> >In addition to this I connect to the database using the> as 'sleeping', which> >
> >The connections in the current activity (SQL) show> the following:> >suggests
> >to me that the connections have been closed.
> >
> >I am using a component to access the database, based on> Catalog=ClientCAS;User> >Public ReadOnly Property ConnectionString()
> >
> >Get
> >
> >ConnectionString = "Data Source=10.200.20.2; Initial> SqlDataReader> >ID=sa;Password=password; Network Library=dbmssocn;"
> >
> >End Get
> >
> >End Property
> >
> >
> >Public Function GetReader(ByVal strSQL As String) As> (CommandBehavior.CloseConnection)> >
> >Dim tmpConn As New SqlConnection(Me.ConnectionString)
> >
> >Dim objCmd As New SqlCommand(strSQL, tmpConn)
> >
> >objCmd.Connection.Open()
> >
> >objCmd.CommandTimeout = 300
> >
> >GetReader = objCmd.ExecuteReader> something along these> >
> >objCmd = Nothing
> >
> >End Function
> >
> >
> >And then within my pages' back end code I would do> & id)> >lines to fill, say, a datagrid:
> >
> >dim obj as new cpData
> >dim dr as sqldatareader = obj.GetReader("spStoredProc "> but will run some> >dg.datasource = dr
> >dg.databind
> >dr.close
> >dr = nothing
> >obj = nothing
> >
> >---------------------->
> >Hi Gregory,
> >
> >Thanks for coming back to me. I am at a loss with this> is confusing,> >checks as you have suggested. The network issue really> are running do not> >certainly since the 'classic' asp applications that we> system and jump> >experience this problem at all.
> >
> >Whilst testing, I have noticed that if I log into the> perfectly. It seems> >between pages at frequent intervals it seems to work> then choose another> >that if I leave a page displayed for any length of time> if that gives you> >lin k that is when the system freezes up - I don't know> to say debug="false",> >any further clues. I have altered the web.config file> and I certainly> >which has made no difference and have checked the code> use.> >believe that all objects used are being destroyed after> is 'upgraded' classic> >
> >Another clue that may help is that part of the system> and got rid of the> >asp, ie we have simply converted the existing asp pages> have set aspcompat> >'set' commands, used isdbnull instead of isnull, and> as being an issue> >accordingly (only on converted pages), I cannot see this> machine.> >due to the fact that these all work wonderfully on my> this please let me> >
> >If you have any other ideas (or not!) in relation to> <NoSpamMgbworld@comcast.netRemuvThis> wrote in> >know.
> >
> >Many thanks again, Carl
> >
> >
> >"Cowboy (Gregory A. Beamer)"> is predictable, but> >message news:%23nYjrDOXDHA.1004@TK2MSFTNGP12.phx.gbl...> >> I don't believe in unpredictable in computers, so it> application. Tracing> >> unknown.
> >>
> >> I would suggest profiling both the machine and the> the machine is doing> >can> >> help some, but you are going to have to examine what> are running and what> >> when the app is running (along with what other apps> influence. If you web> >> they are doing).
> >>
> >> The topology of the network can also be a major> disavantage from> >server> >> has to talk to the database via a firewall, it is at a> to know what it is> >your> >> XP dev box. So, the DMZ can affect your app. You need> possibly, which is> >> doing when it has a problem (down to the line of code> while it is> >> easiest done with logging (which slows down the app> variables here.> >> instituted)).
> >>
> >> I wish I had an easy answer, but there are a lot of> *******************> >************************************************* ********> >>
> >> --
> >> Gregory A. Beamer
> >> MVP; MCP: +I, SE, SD, DBA
> >> Author: ADO.NET and XML: ASP.NET on the Edge
> >>
> >>> *******************> >************************************************* ********> >> ****
> >> Think Outside the Box!
> >>> wrote in message> >> ****
> >> "Carl Howarth" <carl.howarth@m-s-solutions.co.uk>> this issue resolved!> >> news:OClO$tNXDHA.2392@TK2MSFTNGP10.phx.gbl...
> >> > Sorry to repost, but I am fairly desparate to get> enough I get a> >> >
> >> > Please see below, when it hangs if I leave it long> down to the web> >'General> >> > Network Error', or something similar. Could this be> value in the web.config> >> servers
> >> > being on the DMZ, or perhaps some configuration> put the system live> >> > file?
> >> >
> >> > Any help would really be appreciated as I am due to> ASP.NET (vb). The system> >> > ASAP.
> >> >
> >> > Many thanks, Carl Howarth
> >> >
> >> >
> >> > Hi,
> >> >
> >> > We have developed a system using VS.NET 2003 in> machine. We are> >> > runs absolutely fine on my own and my colleague's> have been upgraded to> >running> >> > Win XP Pro. We have 2 web servers, each of which> update.> >> .net
> >> > 1.1, and have all the latest updates from windows> the performance is> >> >
> >> > When we deploy the application to either web server> Sometimes the system> >> > ridiculous (the servers run asp3 systems fine).> instant, others it> >will> >> > work like a dream, moving from page to page in an> that are not accessing> >will> >> > just hang when a link is selected (even to pages> being left open and it's> >> our
> >> > database). It's nothing to do with connections> unpredictable. The systems are> >> > bizarre how the issues are completely> web site folder on our> >> > transferred simply by copying the contents of the> if so, please please> >> > machines to the web site folder on the server(s).
> >> >
> >> > Has anybody come across this kind of situation and> >> >> let
> >> > me know how to get around it!
> >> >
> >> > Thanks very much,
> >> >
> >> > Carl Howarth
> >> > [email]carl.howarth@m-s-solutions.co.uk[/email]
> >> >
> >> >
> >>
> >>
> >
> >
> >.
> >
Carl Howarth Guest



Reply With Quote

