[ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Ajas Mohammed
Hi,

I have a client who has url say www.xyz.com. They want a new url
www.abc.comso that when user enters
www.xyz.com, the user should see www.abc.com in his address bar of browser.
Basically an alias/redirection with address bar showing the new url. I could
have done redirection by dns names/url redirection at website level but
problem is I have a subfolder application i.e. www.xyz.com/subapp.

Now if I do dns/url redirection, and user tries to access
subfolderapplication with this url,
www.xyz.com/subapp/home.cfm, it takes the user automatically to
www.abc.com/home.cfm i.e. the main application without the
subfolderapplication, and I dont want that. It should take user to
www.abc.com/subfolder/home.cfm.

So to avoid this redirection at the website level, I added this code in
Application.cfm

 Code:





https://#Replace(cgi.HTTP_HOST,"xyz","abc")##cgi.PATH_INFO#">

   
  

   







https://#Replace(cgi.HTTP_HOST,"xyz","abc")##cgi.PATH_INFO#">

   
  

   






My question to you guys is that

1. is this a good practice ?

2. do you see any security issues?

3. any performance issues?

4. does it ring any bells?

5. anything obvious iam missing here or do you have a better solution?

Thanks,

-- 

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention,
sincere effort, intelligent direction and skillful execution; it represents
the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live forever."



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Howard Fore
I like to do this sort of thing at the webserver level with the Apache
directives from the mod_alias and mod_rewrite modules. I think the newer IIS
versions have something similar (someone please correct me if I'm wrong).

hofo

On Fri, Apr 25, 2008 at 9:53 AM, Ajas Mohammed <[EMAIL PROTECTED]> wrote:

> Hi,
>
> I have a client who has url say www.xyz.com. They want a new url
> www.abc.com so that when user enters www.xyz.com, the user should see
> www.abc.com in his address bar of browser. Basically an alias/redirection
> with address bar showing the new url. I could have done redirection by dns
> names/url redirection at website level but problem is I have a subfolder 
> application
> i.e. www.xyz.com/subapp.
>
> Now if I do dns/url redirection, and user tries to access 
> subfolderapplication with this url,
> www.xyz.com/subapp/home.cfm, it takes the user automatically to
> www.abc.com/home.cfm i.e. the main application without the 
> subfolderapplication, and I dont want that. It should take user to
> www.abc.com/subfolder/home.cfm.
>



-- 
Howard Fore, [EMAIL PROTECTED]
"The universe tends toward maximum irony. Don't push it." - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Steven Ross
You could also do a forward on the domain, with whoever manages the DNS.

On Fri, Apr 25, 2008 at 10:33 AM, Howard Fore <[EMAIL PROTECTED]> wrote:

> I like to do this sort of thing at the webserver level with the Apache
> directives from the mod_alias and mod_rewrite modules. I think the newer IIS
> versions have something similar (someone please correct me if I'm wrong).
>
> hofo
>
> On Fri, Apr 25, 2008 at 9:53 AM, Ajas Mohammed <[EMAIL PROTECTED]> wrote:
>
>> Hi,
>>
>> I have a client who has url say www.xyz.com. They want a new url
>> www.abc.com so that when user enters www.xyz.com, the user should see
>> www.abc.com in his address bar of browser. Basically an alias/redirection
>> with address bar showing the new url. I could have done redirection by dns
>> names/url redirection at website level but problem is I have a subfolder 
>> application
>> i.e. www.xyz.com/subapp.
>>
>> Now if I do dns/url redirection, and user tries to access 
>> subfolderapplication with this url,
>> www.xyz.com/subapp/home.cfm, it takes the user automatically to
>> www.abc.com/home.cfm i.e. the main application without the 
>> subfolderapplication, and I dont want that. It should take user to
>> www.abc.com/subfolder/home.cfm.
>>
>
>
>
> --
> Howard Fore, [EMAIL PROTECTED]
> "The universe tends toward maximum irony. Don't push it." - Jeff Atwood
> -
> Annual Sponsor - Figleaf Software 
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink 
> -
>



-- 
Steven Ross
web application & interface developer
http://blog.stevensross.com
[mobile] 404-488-4364 [fax] (404) 592-6885
[ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Ajas Mohammed
We are using CF 7 and IIS 6, if anyone needs to know the setup.

Ajas.



On 4/25/08, Howard Fore <[EMAIL PROTECTED]> wrote:
>
> I like to do this sort of thing at the webserver level with the Apache
> directives from the mod_alias and mod_rewrite modules. I think the newer IIS
> versions have something similar (someone please correct me if I'm wrong).
>
> hofo
>
> On Fri, Apr 25, 2008 at 9:53 AM, Ajas Mohammed <[EMAIL PROTECTED]> wrote:
>
>> Hi,
>>
>> I have a client who has url say www.xyz.com. They want a new url
>> www.abc.com so that when user enters www.xyz.com, the user should see
>> www.abc.com in his address bar of browser. Basically an alias/redirection
>> with address bar showing the new url. I could have done redirection by dns
>> names/url redirection at website level but problem is I have a subfolder 
>> application
>> i.e. www.xyz.com/subapp.
>>
>> Now if I do dns/url redirection, and user tries to access 
>> subfolderapplication with this url,
>> www.xyz.com/subapp/home.cfm, it takes the user automatically to
>> www.abc.com/home.cfm i.e. the main application without the 
>> subfolderapplication, and I dont want that. It should take user to
>> www.abc.com/subfolder/home.cfm.
>>
>
>
>
> --
> Howard Fore, [EMAIL PROTECTED]
> "The universe tends toward maximum irony. Don't push it." - Jeff Atwood
> -
> Annual Sponsor - Figleaf Software 
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink 
> -




-- 

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention,
sincere effort, intelligent direction and skillful execution; it represents
the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live forever."



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Howard Fore
Looks like there are a few plugins for IIS 6 to do this:
http://www.petefreitag.com/item/286.cfm

On Fri, Apr 25, 2008 at 10:44 AM, Ajas Mohammed <[EMAIL PROTECTED]> wrote:

> We are using CF 7 and IIS 6, if anyone needs to know the setup.
>
> Ajas.
>
>
>
> On 4/25/08, Howard Fore <[EMAIL PROTECTED]> wrote:
>
>> I like to do this sort of thing at the webserver level with the Apache
>> directives from the mod_alias and mod_rewrite modules. I think the newer IIS
>> versions have something similar (someone please correct me if I'm wrong).
>>
>> hofo
>>
>> On Fri, Apr 25, 2008 at 9:53 AM, Ajas Mohammed <[EMAIL PROTECTED]>
>> wrote:
>>
>>> Hi,
>>>
>>> I have a client who has url say www.xyz.com. They want a new url
>>> www.abc.com so that when user enters www.xyz.com, the user should see
>>> www.abc.com in his address bar of browser. Basically an
>>> alias/redirection with address bar showing the new url. I could have done
>>> redirection by dns names/url redirection at website level but problem is I
>>> have a subfolder application i.e. www.xyz.com/subapp.
>>>
>>> Now if I do dns/url redirection, and user tries to access 
>>> subfolderapplication with this url,
>>> www.xyz.com/subapp/home.cfm, it takes the user automatically to
>>> www.abc.com/home.cfm i.e. the main application without the 
>>> subfolderapplication, and I dont want that. It should take user to
>>> www.abc.com/subfolder/home.cfm.
>>>
>>
>>
>>
>> --
>> Howard Fore, [EMAIL PROTECTED]
>> "The universe tends toward maximum irony. Don't push it." - Jeff Atwood
>> -
>> Annual Sponsor - Figleaf Software 
>>
>> To unsubscribe from this list, manage your profile @
>> http://www.acfug.org?fa=login.edituserform
>>
>> For more info, see http://www.acfug.org/mailinglists
>> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
>> List hosted by FusionLink 
>> -
>>
>
>
>
> --
> 
> http://ajashadi.blogspot.com
> No matter what, find a way. Because thats what winners do.
> You can't improve what you don't measure.
> Quality is never an accident; it is always the result of high intention,
> sincere effort, intelligent direction and skillful execution; it represents
> the wise choice of many alternatives.
> "Live as if you were to die tomorrow. Learn as if you were to live
> forever."
> -
> Annual Sponsor - Figleaf Software 
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink 
> -
>



-- 
Howard Fore, [EMAIL PROTECTED]
"The universe tends toward maximum irony. Don't push it." - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Dean H. Saxe
This code is insecure and subject to HTTP Response Splitting.  You  
need to validate the various CGI variables before responding with a  
302 redirect.  Or, preferably, you use DNS to resolve both URLs to the  
same server.


http://en.wikipedia.org/wiki/HTTP_response_splitting

-dhs

Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"Dissent is the purest form of patriotism."
--Thomas Jefferson



On Apr 25, 2008, at 9:53 AM, Ajas Mohammed wrote:


Hi,

I have a client who has url say www.xyz.com. They want a new url www.abc.com 
 so that when user enters www.xyz.com, the user should see  
www.abc.com in his address bar of browser. Basically an alias/ 
redirection with address bar showing the new url. I could have done  
redirection by dns names/url redirection at website level but  
problem is I have a subfolder application i.e. www.xyz.com/subapp.


Now if I do dns/url redirection, and user tries to access subfolder  
application with this url, www.xyz.com/subapp/home.cfm, it takes the  
user automatically to www.abc.com/home.cfm i.e. the main application  
without the subfolder application, and I dont want that. It should  
take user to www.abc.com/subfolder/home.cfm.


So to avoid this redirection at the website level, I added this code  
in Application.cfm


Code:







   
  
  
   










   
  
  
   





My question to you guys is that

1. is this a good practice ?

2. do you see any security issues?

3. any performance issues?

4. does it ring any bells?

5. anything obvious iam missing here or do you have a better solution?

Thanks,

--

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high  
intention, sincere effort, intelligent direction and skillful  
execution; it represents the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live  
forever."

-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-




Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Mike Staver
I want to make sure I'm understanding this right - according to wikipedia,
you should URL encode cflocation values when they come from variables?
More specifically, a variable like cgi.HTTP_HOST? It's odd to me that
ColdFusion doesn't automatically verify something like that first.  From
the article, it sounds like PHP already does some validation.

> This code is insecure and subject to HTTP Response Splitting.  You
> need to validate the various CGI variables before responding with a
> 302 redirect.  Or, preferably, you use DNS to resolve both URLs to the
> same server.
>
> http://en.wikipedia.org/wiki/HTTP_response_splitting
>
> -dhs
>
> Dean H. Saxe, CISSP, CEH
> [EMAIL PROTECTED]
> "Dissent is the purest form of patriotism."
>  --Thomas Jefferson
>
>
>
> On Apr 25, 2008, at 9:53 AM, Ajas Mohammed wrote:
>
>> Hi,
>>
>> I have a client who has url say www.xyz.com. They want a new url
>> www.abc.com
>>  so that when user enters www.xyz.com, the user should see
>> www.abc.com in his address bar of browser. Basically an alias/
>> redirection with address bar showing the new url. I could have done
>> redirection by dns names/url redirection at website level but
>> problem is I have a subfolder application i.e. www.xyz.com/subapp.
>>
>> Now if I do dns/url redirection, and user tries to access subfolder
>> application with this url, www.xyz.com/subapp/home.cfm, it takes the
>> user automatically to www.abc.com/home.cfm i.e. the main application
>> without the subfolder application, and I dont want that. It should
>> take user to www.abc.com/subfolder/home.cfm.
>>
>> So to avoid this redirection at the website level, I added this code
>> in Application.cfm
>>
>> Code:
>> 
>> 
>>
>>  
>> 
>>
>>  
>>  
>>  
>>  
>>  
>>
>>  
>>
>> 
>>
>>  
>> 
>>
>>  
>>  
>>  
>>  
>>  
>>
>>  
>>
>> 
>> My question to you guys is that
>>
>> 1. is this a good practice ?
>>
>> 2. do you see any security issues?
>>
>> 3. any performance issues?
>>
>> 4. does it ring any bells?
>>
>> 5. anything obvious iam missing here or do you have a better solution?
>>
>> Thanks,
>>
>> --
>> 
>> http://ajashadi.blogspot.com
>> No matter what, find a way. Because thats what winners do.
>> You can't improve what you don't measure.
>> Quality is never an accident; it is always the result of high
>> intention, sincere effort, intelligent direction and skillful
>> execution; it represents the wise choice of many alternatives.
>> "Live as if you were to die tomorrow. Learn as if you were to live
>> forever."
>> -
>> Annual Sponsor - Figleaf Software
>>
>> To unsubscribe from this list, manage your profile @
>> http://www.acfug.org?fa=login.edituserform
>>
>> For more info, see http://www.acfug.org/mailinglists
>> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
>> List hosted by FusionLink
>> -
>
>



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Ajas Mohammed
Thank you everyone for your response.

Mr. Dean, I was waiting for your response and I was glad to see your input.
;-)

Well, guys, I found one solution to this problem.

What I did is, went to IIS 6, website, properties, Home Directory and under
Resource, I selected A Redirection to a URL and in Redirect to field, I
entered my new url appended with  $S and $Q. For example, www.abc.com$S$Q.

$S as per IIS docs, Passes the matched suffix of the requested URL. The
matched suffix is the portion of the original URL that remains after the
redirected URL is substituted.

$Q Passes both the question mark (?) and the parameters from the original
URL.

so now, www.xyz.com/subapp/home.cfm takes me to
www.abc.com/subapp/home.cfmand lets say if i have
www.xyz.com/subapp/home.cfm?var1=yes then its
www.abc.com/subapp/home.cfm?var1=yes . The caveat here to note is that, if I
did not append $Q, the var1 was not being passed to the new url. So adding
$Q fixed that issue.

Last thing, under *The client will be sent to* option, I selected The exact
URL entered above.

I hope this information is helpful.

So far this is working great. I will post back if I hear of any issues from
the client.

Thanks again,

-- 

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention,
sincere effort, intelligent direction and skillful execution; it represents
the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live forever."






On 4/25/08, Mike Staver <[EMAIL PROTECTED]> wrote:
>
> I want to make sure I'm understanding this right - according to wikipedia,
> you should URL encode cflocation values when they come from variables?
> More specifically, a variable like cgi.HTTP_HOST? It's odd to me that
> ColdFusion doesn't automatically verify something like that first.  From
> the article, it sounds like PHP already does some validation.
>
> > This code is insecure and subject to HTTP Response Splitting.  You
> > need to validate the various CGI variables before responding with a
> > 302 redirect.  Or, preferably, you use DNS to resolve both URLs to the
> > same server.
> >
> > http://en.wikipedia.org/wiki/HTTP_response_splitting
> >
> > -dhs
> >
> > Dean H. Saxe, CISSP, CEH
> > [EMAIL PROTECTED]
> > "Dissent is the purest form of patriotism."
> >  --Thomas Jefferson
> >
> >
> >
> > On Apr 25, 2008, at 9:53 AM, Ajas Mohammed wrote:
> >
> >> Hi,
> >>
> >> I have a client who has url say www.xyz.com. They want a new url
> >> www.abc.com
> >>  so that when user enters www.xyz.com, the user should see
> >> www.abc.com in his address bar of browser. Basically an alias/
> >> redirection with address bar showing the new url. I could have done
> >> redirection by dns names/url redirection at website level but
> >> problem is I have a subfolder application i.e. www.xyz.com/subapp.
> >>
> >> Now if I do dns/url redirection, and user tries to access subfolder
> >> application with this url, www.xyz.com/subapp/home.cfm, it takes the
> >> user automatically to www.abc.com/home.cfm i.e. the main application
> >> without the subfolder application, and I dont want that. It should
> >> take user to www.abc.com/subfolder/home.cfm.
> >>
> >> So to avoid this redirection at the website level, I added this code
> >> in Application.cfm
> >>
> >> Code:
> >> 
> >> 
> >>
> >>  
> >> 
> >>
> >>  
> >>  
> >>  
> >>  
> >>  
> >>
> >>  
> >>
> >> 
> >>
> >>  
> >> 
> >>
> >>  
> >>  
> >>  
> >>  
> >>  
> >>
> >>  
> >>
> >> 
> >> My question to you guys is that
> >>
> >> 1. is this a good practice ?
> >>
> >> 2. do you see any security issues?
> >>
> >> 3. any performance issues?
> >>
> >> 4. does it ring any bells?
> >>
> >> 5. anything obvious iam missing here or do you have a better solution?
> >>
> >> Thanks,
> >>
> >> --
> >> 
> >> http://ajashadi.blogspot.com
> >> No matter what, find a way. Because thats what winners do.
> >> You can't improve what you don't measure.
> >> Quality is never an accident; it is always the result of high
> >> intention, sincere effort, intelligent direction and skillful
> >> execution; it represents the wise choice of many alternatives.
> >> "Live as if you were to die tomorrow. Learn as if you were to live
> >> forever."
> >> -
> >> Annual Sponsor - Figleaf Software
> >>
> >> To unsubscribe from this list, manage your profile @
> >> http://www.acfug.org?fa=login.edituserform
> >>
> >> For more info, see http://www.acfug.org/mailinglists
> >> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> >> List hosted by FusionLink
> >> -
> >
> >
>
>
>
> -
> Annual Sponsor 

Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Dean H. Saxe
I'm not sure on PHP, but CF has no context of the business  
requirements for the data, so how could it validate it?  I'm more  
specifically concerned about the querystring variable, as this could  
be just about anything


This is a common vulnerability, but it does require some special  
circumstances for it to work correctly


-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"To announce that there must be no criticism of the president, or that  
we are to stand by the president right or wrong, is not only  
unpatriotic and servile, but is morally treasonable to the American  
public."

-- Theodore Roosevelt


On Apr 25, 2008, at 3:33 PM, Mike Staver wrote:

I want to make sure I'm understanding this right - according to  
wikipedia,

you should URL encode cflocation values when they come from variables?
More specifically, a variable like cgi.HTTP_HOST? It's odd to me that
ColdFusion doesn't automatically verify something like that first.   
From

the article, it sounds like PHP already does some validation.


This code is insecure and subject to HTTP Response Splitting.  You
need to validate the various CGI variables before responding with a
302 redirect.  Or, preferably, you use DNS to resolve both URLs to  
the

same server.

http://en.wikipedia.org/wiki/HTTP_response_splitting

-dhs

Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"Dissent is the purest form of patriotism."
--Thomas Jefferson



On Apr 25, 2008, at 9:53 AM, Ajas Mohammed wrote:


Hi,

I have a client who has url say www.xyz.com. They want a new url
www.abc.com
so that when user enters www.xyz.com, the user should see
www.abc.com in his address bar of browser. Basically an alias/
redirection with address bar showing the new url. I could have done
redirection by dns names/url redirection at website level but
problem is I have a subfolder application i.e. www.xyz.com/subapp.

Now if I do dns/url redirection, and user tries to access subfolder
application with this url, www.xyz.com/subapp/home.cfm, it takes the
user automatically to www.abc.com/home.cfm i.e. the main application
without the subfolder application, and I dont want that. It should
take user to www.abc.com/subfolder/home.cfm.

So to avoid this redirection at the website level, I added this code
in Application.cfm

Code:




























My question to you guys is that

1. is this a good practice ?

2. do you see any security issues?

3. any performance issues?

4. does it ring any bells?

5. anything obvious iam missing here or do you have a better  
solution?


Thanks,

--

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high
intention, sincere effort, intelligent direction and skillful
execution; it represents the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live
forever."
-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-







-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-