473,473 Members | 1,754 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Design alphabet

I need to design a toolbar or something that will show letters from the
alphabet.
The user will use these letters to filter grids data.
I'd like to have these letters with a hover effect: when the user moves a
mouse over
the letter it gets its background changed.
Any idea?
Nov 18 '05 #1
5 1733
Hack up this ASP...

<table border="0" style="position:absolute; margin-left:-420;
top:50px; font-size:8pt; font-family:helvetica, arial, sans-serif; z-index:5;">
<tr>
<%
response.write"<td><a href=""a-zcss.asp?id=0-9"" & "" "">0-9</td>"
for x= 65 to 90
response.write "<td><a href='a-zcss.asp?id=" & chr(x) & "'>" & chr(x) & "</td>"
next
%>
</tr>
</table>
--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Mark Goldin" <ma********@comcast.net> wrote in message
news:O1**************@TK2MSFTNGP12.phx.gbl...
I need to design a toolbar or something that will show letters from the
alphabet.
The user will use these letters to filter grids data.
I'd like to have these letters with a hover effect: when the user moves a
mouse over
the letter it gets its background changed.
Any idea?

Nov 18 '05 #2
Jos
Mark Goldin wrote:
I need to design a toolbar or something that will show letters from
the alphabet.
The user will use these letters to filter grids data.
I'd like to have these letters with a hover effect: when the user
moves a mouse over
the letter it gets its background changed.
Any idea?


Here's some letter pagers for ASP.NET:
http://www.codeproject.com/aspnet/letterbasedpaging.asp
http://www.codeproject.com/aspnet/LetterPaging.asp

--

Jos
Nov 18 '05 #3
Neither of those projects are 'alphanumeric' unless a user wants to
waste their time selecting 'all' which most dial-up users learn very
quickly not to do.

Too bad most site designers and developers are stupid and lazy,
do not know how to design or develop the user interface well, or
do not care to put forth the effort to do the job well, or both.

Furthermore, enabling 'all' is stupid in most cases as it can be used
by competitors or other thieves to obtain dumps of the entire table.
If the developer was especially stupid perhaps the entire database.

While those articles are good starting points both need to be modified
to support 0-9 as a selection choice. Neither include intelligent use of
SQL Collation which allows retrieval using case dependent search.
--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Jos" <jo***************@fastmail.fm> wrote in message
news:#S*************@TK2MSFTNGP10.phx.gbl...
Mark Goldin wrote:
I need to design a toolbar or something that will show letters from
the alphabet.
The user will use these letters to filter grids data.
I'd like to have these letters with a hover effect: when the user
moves a mouse over
the letter it gets its background changed.
Any idea?


Here's some letter pagers for ASP.NET:
http://www.codeproject.com/aspnet/letterbasedpaging.asp
http://www.codeproject.com/aspnet/LetterPaging.asp

--

Jos

Nov 18 '05 #4
Jos
clintonG wrote:
Neither of those projects are 'alphanumeric' unless a user wants to
waste their time selecting 'all' which most dial-up users learn very
quickly not to do.

Too bad most site designers and developers are stupid and lazy,
do not know how to design or develop the user interface well, or
do not care to put forth the effort to do the job well, or both.

Furthermore, enabling 'all' is stupid in most cases as it can be used
by competitors or other thieves to obtain dumps of the entire table.
If the developer was especially stupid perhaps the entire database.

While those articles are good starting points both need to be modified
to support 0-9 as a selection choice. Neither include intelligent use
of SQL Collation which allows retrieval using case dependent search.


The second:
http://www.codeproject.com/aspnet/LetterPaging.asp
definitely supports 0-9. I happened to use it on a database with
company names, and since some company names started with
an ampersand, even the @ showed up in the pager.

--

Jos
Nov 18 '05 #5
I may have made a compiler error ;-0 as I've been working
on developing my own alphanumeric navigation component
and as soon as I saw others mentioned went to go look-see.

Thanks for bringing it to my attention -- I'll look closer.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Jos" <jo***************@fastmail.fm> wrote in message
news:#F**************@TK2MSFTNGP11.phx.gbl...
clintonG wrote:
Neither of those projects are 'alphanumeric' unless a user wants to
waste their time selecting 'all' which most dial-up users learn very
quickly not to do.

Too bad most site designers and developers are stupid and lazy,
do not know how to design or develop the user interface well, or
do not care to put forth the effort to do the job well, or both.

Furthermore, enabling 'all' is stupid in most cases as it can be used
by competitors or other thieves to obtain dumps of the entire table.
If the developer was especially stupid perhaps the entire database.

While those articles are good starting points both need to be modified
to support 0-9 as a selection choice. Neither include intelligent use
of SQL Collation which allows retrieval using case dependent search.


The second:
http://www.codeproject.com/aspnet/LetterPaging.asp
definitely supports 0-9. I happened to use it on a database with
company names, and since some company names started with
an ampersand, even the @ showed up in the pager.

--

Jos

Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: John C | last post by:
I am trying to develop a access database version 2002 from scratch and I am a novice programmer and need much direction. I have been researching and studying about relational database design and...
3
by: cassandra.flowers | last post by:
I'm designing a database because I have to do it for the preperation work for my A-Level ICT exam. The database is for a building company. It has to store information on building projects...
5
by: Stefan Krah | last post by:
Hello, I am currently writing code where it is convenient to convert char to int . The conversion function relies on a character set with contiguous alphabets. int set_mesg(Key *key, char...
12
by: one | last post by:
greetings i am just wondering if some expert here can either show me how to do this or point me to the right direction (url... i want to use c# to generate a list of alphabet e.g A B C ... AA...
8
by: Jack Addington | last post by:
I want to scroll through the alphabet in order to scroll some data to the closest name that starts with a letter. If the user hits the H button then it should scroll to the letter closest to H. ...
31
by: Joe Smith | last post by:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "0123456789" " " "!#%^&*()-_" "+=~\|;:\'" "\"{},.<>/\?" "\a\b\f\n\r\t\v\\" Do the above string literals comprise an alphabet for C?...
0
by: rockdale | last post by:
Hi, all: I implemented an alphabet list so that when user click letter A then I will re-bind a gridview control using SQL stored procedure. It works fine. The problem is I populate my alphabet...
20
by: geebanga88 | last post by:
HI i have a method that is supose to store the alphabet in an array however dont think that it is being added to the array. public static void GetAlphabet (char alphabet) { int...
2
hsriat
by: hsriat | last post by:
I have to design a dictionary (not English). So I have a simple database design for it. ie. 33 table each containing all the words starting with single alphabet (eg. one table for A, one for B and...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.