Click here to Skip to main content
15,895,709 members
Home / Discussions / Web Development
   

Web Development

 
Questionredirecting on hyperlink click in datagrid Pin
ElvenTrumpeter3623-Aug-06 6:24
ElvenTrumpeter3623-Aug-06 6:24 
AnswerRe: redirecting on hyperlink click in datagrid Pin
alexfromto24-Aug-06 6:43
alexfromto24-Aug-06 6:43 
GeneralRe: redirecting on hyperlink click in datagrid Pin
ElvenTrumpeter3624-Aug-06 8:25
ElvenTrumpeter3624-Aug-06 8:25 
QuestionFirefox - text zoom event? Pin
Dmitry Khudorozhkov23-Aug-06 1:18
Dmitry Khudorozhkov23-Aug-06 1:18 
QuestionHosting dot net site on WEB server / DOMAIN Pin
sandeep kumar pundhir22-Aug-06 19:54
sandeep kumar pundhir22-Aug-06 19:54 
AnswerRe: Hosting dot net site on WEB server / DOMAIN Pin
Paddy Boyd23-Aug-06 1:16
Paddy Boyd23-Aug-06 1:16 
QuestionExcel using ASP Pin
Geo S Neeliyara22-Aug-06 16:07
Geo S Neeliyara22-Aug-06 16:07 
QuestionASP ADO Variable Problem [modified] Pin
Soot22-Aug-06 10:22
Soot22-Aug-06 10:22 
Ok I have got my page to display the data I need using a store procedure etc. What I need to know is, how do I create an input text form box (IE: Enter ID hereSmile | :) with a submit button and pass that variable to the (ident = 1) below to make it (ident = textboxvariable). Any help would be appreciated thanks! =)

<%Dim ident

'select your product_id
ident = 1
Dim connection
Dim rs

'create the connection
connection = Server.CreateObject("adodb.connection")
'create the connection (here we used a DSN - use any standard connection
connection.open("Driver={SQL Server};Server=X;Database=trd;Uid=X;Pwd=X;")

'create the recordset
rs = Server.CreateObject("adodb.recordset")

'open the recordset, passing in the variable
'note that the variable product_id does not have to be name the same as in the stored procedure, it just needs to be the same data type.

rs.Open("Exec GETID " & ident, connection)

'display the recordset
Do Until rs.EOF
For Each ident In rs.Fields
Response.Write(ident.value & "<br />")
Next
Response.Write("<br />")
rs.MoveNext()
Loop
rs.close()
connection.close()%>

Jesse Myer
jessemyer06@aol.com
GeneralRe: ASP ADO Variable Problem Pin
Guffa22-Aug-06 11:18
Guffa22-Aug-06 11:18 
GeneralRe: ASP ADO Variable Problem Pin
Soot23-Aug-06 4:26
Soot23-Aug-06 4:26 
Questionbanner rotator for html in html Pin
tetraso22-Aug-06 6:26
tetraso22-Aug-06 6:26 
AnswerRe: banner rotator for html in html Pin
User 171649222-Aug-06 10:05
professionalUser 171649222-Aug-06 10:05 
GeneralRe: banner rotator for html in html Pin
tetraso23-Aug-06 23:45
tetraso23-Aug-06 23:45 
GeneralRe: banner rotator for html in html Pin
User 171649225-Aug-06 1:58
professionalUser 171649225-Aug-06 1:58 
Questioncontext menu Pin
248912822-Aug-06 0:20
248912822-Aug-06 0:20 
AnswerRe: context menu Pin
Guffa22-Aug-06 6:00
Guffa22-Aug-06 6:00 
Questionis their any way to disable or hide only close button in titlebar of browser window Pin
jagmit2021-Aug-06 21:29
jagmit2021-Aug-06 21:29 
QuestionHeader and footer of web page Pin
Geo S Neeliyara21-Aug-06 15:58
Geo S Neeliyara21-Aug-06 15:58 
AnswerRe: Header and footer of web page Pin
Boro_Bob22-Aug-06 0:01
Boro_Bob22-Aug-06 0:01 
QuestionASP Datagrid SQL Select Parameter Problem Pin
Soot21-Aug-06 9:56
Soot21-Aug-06 9:56 
AnswerRe: ASP Datagrid SQL Select Parameter Problem Pin
Chris McGlothen21-Aug-06 11:46
Chris McGlothen21-Aug-06 11:46 
GeneralRe: ASP Datagrid SQL Select Parameter Problem Pin
Chris McGlothen21-Aug-06 12:15
Chris McGlothen21-Aug-06 12:15 
QuestionInfoPath + SharePoint + Reporting Services???? Pin
Stas21-Aug-06 5:56
Stas21-Aug-06 5:56 
QuestionTricky!!! Layoutproblem with JS generated select element Pin
Stephan Pilz20-Aug-06 23:24
Stephan Pilz20-Aug-06 23:24 
AnswerRe: Tricky!!! Layoutproblem with JS generated select element Pin
Guffa21-Aug-06 0:23
Guffa21-Aug-06 0:23 

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.