Click here to Skip to main content
15,908,673 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Javascript Mathematic Bug. Pin
Guffa30-May-07 22:55
Guffa30-May-07 22:55 
QuestionShow ftp directly in windows explorer in a web page using frames Pin
arr.cpp30-May-07 5:13
arr.cpp30-May-07 5:13 
QuestionCustom Scroll on ASP.NET Panel Pin
L Viljoen30-May-07 2:40
professionalL Viljoen30-May-07 2:40 
AnswerRe: Custom Scroll on ASP.NET Panel Pin
RichardGrimmer30-May-07 5:54
RichardGrimmer30-May-07 5:54 
GeneralRe: Custom Scroll on ASP.NET Panel Pin
L Viljoen30-May-07 20:15
professionalL Viljoen30-May-07 20:15 
QuestionDeleting a Character in Javascript Pin
kc_krishnan29-May-07 20:11
kc_krishnan29-May-07 20:11 
QuestionChecking internet connection Pin
Sachin Pimpale29-May-07 1:03
Sachin Pimpale29-May-07 1:03 
QuestionDatabase connection Pin
matjame28-May-07 23:32
matjame28-May-07 23:32 
I have a database(access) and Im tryin to connect my webpage so I can compare values.I have already uploaded values into a combo box so when i select a value I want the page to go to database and filter values by the selected item and then display them into a datagrid or something.

Any great ideas on how i can do this.Please help.Ive tried everything.

A code wud be nice
Here is my code

Ok.
Now you get to view all the telephone numbers
by department

 




Select
An Alphabet


None
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z



<%
Dim Connection
Set Connection=Server.CreateObject("ADODB.Connection")
Dim ConnectionString
ConnectionString="PROVIDER=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source= U:\Websites\Working Site\Home Page\Home Page\TelephoneList.mdb"

Connection.Open ConnectionString
%>
<%
Dim Recordset
Set Recordset=Server.CreateObject("ADODB.Recordset")


Dim Telephonelist
Telephonelist="SELECT * FROM TelephoneList where FilterByType = '" &

Recordset.Open Telephonelist, Connection
%>
<%
If Recordset.EOF Then
Response.Write("No records returned.")
Else
if (Telephone.Department.value == "None")
{
alert("Please select a value other than the one you selected");
Telephone.Department.focus();
return (false);
}
if (Telephone.Department.value == "A")
{
Telephonelist="SELECT * FROM TelephoneList where (FilterByKey=='A')
Do While NOT Recordset.Eof
Response.write Recordset("Name")
Response.write Recordset("Surname")
Response.write Recordset("Department")
Response.write Recordset("Xtension")
Response.write "
"
Recordset.MoveNext
Loop
End If
%>



kagiso

AnswerRe: Database connection Pin
Navneet Hegde29-May-07 1:09
Navneet Hegde29-May-07 1:09 
QuestionTool tip for HTML TableCell Pin
Rajesh Thomas28-May-07 21:06
Rajesh Thomas28-May-07 21:06 
Questionwebservics simultaneos calling prob Pin
khalidahmad28-May-07 19:34
khalidahmad28-May-07 19:34 
GeneralRe: webservics simultaneos calling prob Pin
khalidahmad29-May-07 0:00
khalidahmad29-May-07 0:00 
Questiondataset serialization problem in .net 2.0 Pin
khalidahmad28-May-07 19:23
khalidahmad28-May-07 19:23 
Question"onClick" Event in AJAX Control auto runs "mouseOut" Event Pin
devil8528-May-07 5:43
devil8528-May-07 5:43 
AnswerRe: &quot;onClick&quot; Event in AJAX Control auto runs &quot;mouseOut&quot; Event Pin
JimmyRopes28-May-07 6:14
professionalJimmyRopes28-May-07 6:14 
GeneralRe: &quot;onClick&quot; Event in AJAX Control auto runs &quot;mouseOut&quot; Event Pin
devil8528-May-07 8:14
devil8528-May-07 8:14 
GeneralRe: &quot;onClick&quot; Event in AJAX Control auto runs &quot;mouseOut&quot; Event Pin
Christian Graus28-May-07 12:51
protectorChristian Graus28-May-07 12:51 
GeneralRe: &amp;amp;amp;amp;quot;onClick&amp;amp;amp;amp;quot; Event in AJAX Control auto runs &amp;amp;amp;amp;quot;mouseOut&amp;amp;amp;amp;quot; Event Pin
JimmyRopes28-May-07 20:59
professionalJimmyRopes28-May-07 20:59 
QuestionRe: &amp;amp;amp;amp;quot;onClick&amp;amp;amp;amp;quot; Event in AJAX Control auto runs &amp;amp;amp;amp;quot;mouseOut&amp;amp;amp;amp;quot; Event Pin
devil8529-May-07 0:45
devil8529-May-07 0:45 
AnswerRe: &amp;amp;amp;amp;quot;onClick&amp;amp;amp;amp;quot; Event in AJAX Control auto runs &amp;amp;amp;amp;quot;mouseOut&amp;amp;amp;amp;quot; Event Pin
JimmyRopes29-May-07 6:03
professionalJimmyRopes29-May-07 6:03 
QuestionString Parameter From .Net Application to .Net ASP Web Service Pin
Ram_Goldman28-May-07 4:35
Ram_Goldman28-May-07 4:35 
AnswerRe: String Parameter From .Net Application to .Net ASP Web Service Pin
Christian Graus28-May-07 12:56
protectorChristian Graus28-May-07 12:56 
QuestionaspSmartUpload error '800a0009' Pin
Anurag Gandhi28-May-07 1:28
professionalAnurag Gandhi28-May-07 1:28 
QuestionHow to improve website ranking in Google Pin
rajesh22527-May-07 4:31
rajesh22527-May-07 4:31 
AnswerRe: How to improve website ranking in Google Pin
Johnny ²27-May-07 15:54
Johnny ²27-May-07 15:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.