Ask a Question related to ASP.NET General, Design and Development.
-
julian #1
Verifying a URL
Hi,
I have situation where I want to use a stylesheet stored
in one of two possible urls. Basically I need to say if
the first url doesn't exist, use the second url.
I can do this by creating a WebRequest and intercepting
the exception raised by the GetResponse if the first url
doesn't exisit, but this feels like a hack to me and I was
hoping there would be some simple way (similar to
File.Exists) to check whether a url refered to a file that
was actually there?
Any help would be appreciated.
Thanks.
julian Guest
-
Verifying datasources
Hi, everyone. I didn't write anything for a while. I have an interesting situation here and not sure what causes it and what exactly is the... -
Verifying password
This is so basic it hurts. I have a form asking for name and password. The form sends the data to a CF template which verifies it against a db. ... -
Verifying form
I have a form that I am trying to verify in PHP. If the user incorrectly filled a field, I want the form to redisplay itself with all the submitted... -
[PHP] verifying sql INSERTs
Marek Kilimajer <mailto:kilimajer@webglobe.sk> on Tuesday, August 26, 2003 3:59 AM said: OOhhh... You know, I already HAVE done this, and I... -
verifying sql INSERTs
Hi! (MySQL) What's the best way to determine a sql INSERT statement has executed successfully? What I've got is a function whose sole... -
Mario Vargas #2
Re: Verifying a URL
Actually, before I finished reading your post I thought about telling you to
use the WebRequest class. I think you are on the right track, but you might
want to consider caching the URL so that it's not done for every request to
your web form.
Mario
"julian" <julian.jelfs@strategicthought.com> wrote in message
news:087b01c34c61$3c6a3d40$a601280a@phx.gbl...> Hi,
>
> I have situation where I want to use a stylesheet stored
> in one of two possible urls. Basically I need to say if
> the first url doesn't exist, use the second url.
>
> I can do this by creating a WebRequest and intercepting
> the exception raised by the GetResponse if the first url
> doesn't exisit, but this feels like a hack to me and I was
> hoping there would be some simple way (similar to
> File.Exists) to check whether a url refered to a file that
> was actually there?
>
> Any help would be appreciated.
>
> Thanks.
Mario Vargas Guest
-
julian #3
Verifying a URL
Thanks for the responses. I guess I will leave it the way
it is then - it certainly works. I just feel a bit
guilty / lazy to be using Exceptions to handle an expected
condition (i.e. not an error).
was>-----Original Message-----
>Hi,
>
>I have situation where I want to use a stylesheet stored
>in one of two possible urls. Basically I need to say if
>the first url doesn't exist, use the second url.
>
>I can do this by creating a WebRequest and intercepting
>the exception raised by the GetResponse if the first url
>doesn't exisit, but this feels like a hack to me and Ithat>hoping there would be some simple way (similar to
>File.Exists) to check whether a url refered to a file>was actually there?
>
>Any help would be appreciated.
>
>Thanks.
>.
>julian Guest
-
Mario Vargas #4
Re: Verifying a URL
Actually, that's why structured exception handling was created. You catch an
exception to recover from it. That's how your applications come become
"smarter." They learn from their mistakes, he he.
Mario
"julian" <julian.jelfs@strategicthought.com> wrote in message
news:00d501c34c75$a38fc9e0$a101280a@phx.gbl...> Thanks for the responses. I guess I will leave it the way
> it is then - it certainly works. I just feel a bit
> guilty / lazy to be using Exceptions to handle an expected
> condition (i.e. not an error).
>
>> was> >-----Original Message-----
> >Hi,
> >
> >I have situation where I want to use a stylesheet stored
> >in one of two possible urls. Basically I need to say if
> >the first url doesn't exist, use the second url.
> >
> >I can do this by creating a WebRequest and intercepting
> >the exception raised by the GetResponse if the first url
> >doesn't exisit, but this feels like a hack to me and I> that> >hoping there would be some simple way (similar to
> >File.Exists) to check whether a url refered to a file> >was actually there?
> >
> >Any help would be appreciated.
> >
> >Thanks.
> >.
> >
Mario Vargas Guest



Reply With Quote

