Ask a Question related to ASP Database, Design and Development.
-
Sten #1
Avoiding query timeouts in ASP.NET ?
Hi
We are using ASP.NET on IIS5 to process requests
in a database.
How can one make choices in the .aspx based on
if a user has or hasn't changed a field? Is it possible
to control the ASP.NET environment by use of
some client side scripting ( ?changes=yes to URL)
or is there a way to tell in .aspx which Label elements
has changed?
Only solution i can think of currently is to query the
DB and then do an field by field comparision. Is that
the best way?
- Sten
Sten Guest
-
Connection timeouts
Hi all. I have a couple of serverprograms running on my Linuxbox that has a connection open to a MySQL (5.0.18) database. These serverprograms... -
session timeouts
I've had this problem for years, but have never been able to figure it out. I often pass session information via the URL. On our local development... -
Timeouts on GetRequestStream()
I've created a proxy to a set of webservices using the WSDL.exe tool on the WSDL definitions (Using Visual Studio 2003 and the v1.1.4322 .NET... -
PHP SESSION timeouts
Hi, No, there is not! You have to manage yourself the timeout, for instance through a timestamp, which you verify on each request. PHP does not... -
Cwd Module - Timeouts
Hi. Please take a look at the following snippet of code: use Cwd; my $directory = getcwd(); When running this on a directory under afs, for... -
Bob #2
Re: Avoiding query timeouts in ASP.NET ?
There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-savvy person here who can
answer your question, you can eliminate the luck factor by posting your
question to a group where those dotnet-savvy people hang out. I suggest
microsoft.public.dotnet.framework.adonet.
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Guest
-
Kristofer #3
Re: Avoiding query timeouts in ASP.NET ?
Hello,
Be very carefully when trusting client side code. A client can very easily
fake a change, when nothing has changed, and can cause problems depending on
what your application is about.
One way to solve your problem is to use hidden fields.
I suggest that you try in a newsgroup about ASP.NET, for example:
microsoft.public.dotnet.framework.aspnet
--
Regards,
Kristofer Gafvert - IIS MVP
http://www.ilopia.com - When you need help!
"Sten Westerback" <com> wrote in message
news:nQ3Tc.22610$nokia.com...
Kristofer Guest
-
M. #4
Re: Avoiding query timeouts in ASP.NET ?
well this is pretty easy to acomplish on the client ( HTML ) side, if you
add handling code to the onchange event of a html textbox control
you can then post these changed values to a hidden frame
"Sten Westerback" <com> wrote in message
news:nQ3Tc.22610$nokia.com...
M. Guest



Reply With Quote

