Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8626 - 8655 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8626
When using CDO to send email from an asp page, is there a certain length the messages have to be under? Thanks in advance Mike...
darth_mikeyd
Offline Send Email
Sep 23, 2009
11:25 pm
8627
Hi guys, as a newbie, I couldn't find an answer to this problem I have anywhere on this 'tinternet thingie, so thought I'd throw it over to you to see if you...
coptercrazy
Offline Send Email
Oct 1, 2009
4:58 pm
8628
<td class="c1"> <% If rsSearch.Fields("PIX") <> "" Then %> <a href="<%= rsSearch.Fields("PIX").Value %>" target=_blank> Photo </a> <% Else %> Photo not...
Eric Van Buren
ibeshank
Offline Send Email
Oct 1, 2009
5:13 pm
8629
Actually, what I would do is trap a null value in the SQL, and return a URL pointing to itself; the easiest way to do this is to use the "Coalesce" function in...
erickestler
Online Now Send Email
Oct 1, 2009
5:28 pm
8630
You can also return "", an empty string ... handy to not show anything on the screen. In this case you can return "No Photo" to the UI, and if you add that...
mallard
ttmallard
Offline Send Email
Oct 1, 2009
6:39 pm
8631
Thx for a quick reply guy. With regards the solution, I've tried both versions and without upsetting anyone, found that the reply from Eric Van Buren was the...
coptercrazy
Offline Send Email
Oct 1, 2009
7:09 pm
8632
hey   how can i declare variables in asp which can be accessed by two or more pages ?   i wish to do something like this:   in page 1 i hav a drop down box...
Darsheet Shah
darsheets
Offline Send Email
Oct 1, 2009
8:09 pm
8633
You don't really need session to get it for the second page, it can access the forms collection using the name of the <select> tag, then add that to session so...
mallard
ttmallard
Offline Send Email
Oct 1, 2009
8:26 pm
8634
Hidden Fields http://learnasp.com/freebook/asp/hidden.aspx Cookies http://learnasp.com/freebook/asp/cookies.aspx Sessions ...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 1, 2009
8:44 pm
8635
Looks like you may be doing this with Dreamweaver? First you need to be sure if all non-entries are really "null" or if they're blank/empty. Then you can...
Christie Mason
cmasonvargas
Offline Send Email
Oct 1, 2009
9:12 pm
8636
Hi guys. You guys made my life better with your quick and helpful advice last time, now I've just tried to do the same hyperlink from a table but this time it...
coptercrazy
Offline Send Email
Oct 6, 2009
7:43 pm
8637
Quick and Dirty.. and should do what you are asking.. if I'm reading the request correctly. :) .... Response.Write ("<tr>" & vbCrLf) IF LEN(oRS("PIX")) <> 0...
pogowolf
Offline Send Email
Oct 6, 2009
7:52 pm
8638
Cheers pogowolf - did the trick as required, could I now be cheeky and ask if you would like to break the component issues down and explain what each part does...
coptercrazy
Offline Send Email
Oct 6, 2009
8:07 pm
8639
BTW reading fields is expensive...... http://learnasp.com/freebook/asp/propertyexpense.aspx BEFORE.... IF LEN(oRS("PIX")) <> 0 THEN Response.Write ("<td...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 6, 2009
11:40 pm
8640
Ok - Point taken Charles - I've ammended my .ASP pages to the "DIM" reflex rather than the long-winded way that I used to think was the way to go. I did say...
coptercrazy
Offline Send Email
Oct 7, 2009
8:26 pm
8641
The mistakes are because I have not coded in ASP since 2001. I only do ASP.net. The samples for ASP at LearnAsp.com are all correct syntax -- however if you...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 7, 2009
10:08 pm
8642
Sure, though I'm glad it was brought up about the reading fields.. I've also not touched Classic ASP in quite a few years.. LOL anyway.. here's the new code...
pogowolf
Offline Send Email
Oct 8, 2009
12:45 pm
8643
I also think Context switching is so much easier on the eys of HTML/CSS types who have to maintain pages, eliminates the need for ' just to simplify typing,...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 8, 2009
6:38 pm
8644
Good advice, adding in self-documentation: Dim product_photo And documentation: Dim pix 'the product photo IF LEN(Pix) <> 0 THEN%> 'test for empty or null ...
mallard
ttmallard
Offline Send Email
Oct 8, 2009
8:29 pm
8645
I would agree Dim product_photo_url product_photo_url=.... If LEN(product_photo_url)>0   THEN%> is much much much better. The comment ...... 'test for empty...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 8, 2009
9:14 pm
8646
Nice, adding to the sub's idea, when I'm confronted with 1,000+ line spaghetti code the first thing I do is create a sub main() page, convert pieces into...
mallard
ttmallard
Offline Send Email
Oct 8, 2009
9:40 pm
8647
Hello, I have solved my problem by: 1.Install "php-5.2.6-win32-installer" to my webserver. I can run PHP script on IIS. 2.Written PHP script for autocomplete...
kawin_l
Offline Send Email
Oct 19, 2009
7:04 am
8648
Cool Kawin, ASP pages can have other coding but you start two scripting engines so dual-scripted pages run slow is the only drawback, generally. You can use...
mallard
ttmallard
Offline Send Email
Oct 19, 2009
9:51 am
8649
I would like to know how to detect the different mobile devices (iPhone, etc) so I can start learning how to program for them. Does anyone know how to do this?...
darth_mikeyd
Offline Send Email
Oct 20, 2009
8:08 pm
8650
It's the browser that defines what made the request, so grabbing the useragent is what you need to do, from browsecap.ini to php there's quite a few ways to...
mallard
ttmallard
Offline Send Email
Oct 20, 2009
10:47 pm
8651
this code: <% '****************************************************************************** ' HTML/XHTML MP/WML Mobile Redirect ' ' If you have built HTML,...
mersinan
snantarkun
Offline Send Email
Oct 22, 2009
8:19 am
8652
Dear Aspclassicanyquestionisok,I strongly recommend this website www.justdial.com. It's a world class local search service & I've always found anything I've...
Jitendra
jp.kolhe
Offline Send Email
Oct 30, 2009
4:47 pm
8653
dear frd i have a problam becoz i want to make a job site but i have no code and no idea to upload or copy and paste resume code and show resume like as ms...
piyush
piyushrastog...
Offline Send Email
Nov 3, 2009
8:25 am
8654
http://www.codeplex.com/aspclassiccompiler Its good to read Scott Hanselman's "Tweets" and to subscribe to a couple hundred .NET blogs via Google Reader so I...
Charles Carroll
charlesmarkc...
Online Now Send Email
Nov 5, 2009
3:50 pm
8655
If this message is not acceptable for group parameters, my apologies. I finally figured out how to use Ajax for inline edit of Classic ASP datagrid table rows....
Lil Peck
improperuser...
Offline Send Email
Nov 6, 2009
10:35 am
Messages 8626 - 8655 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help