Click here to Skip to main content
15,917,953 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.NET switching from form to form in code? Pin
Mike Ellison22-Aug-06 10:57
Mike Ellison22-Aug-06 10:57 
GeneralRe: ASP.NET switching from form to form in code? Pin
Solly7422-Aug-06 11:13
Solly7422-Aug-06 11:13 
GeneralRe: ASP.NET switching from form to form in code? Pin
Solly7422-Aug-06 11:26
Solly7422-Aug-06 11:26 
GeneralRe: ASP.NET switching from form to form in code? Pin
Mike Ellison22-Aug-06 12:18
Mike Ellison22-Aug-06 12:18 
GeneralRe: ASP.NET switching from form to form in code? Pin
Not Active22-Aug-06 14:57
mentorNot Active22-Aug-06 14:57 
QuestionEnable User to choose diffrent Designs at Run Time Pin
X204022-Aug-06 10:26
X204022-Aug-06 10:26 
AnswerRe: Enable User to choose diffrent Designs at Run Time Pin
Mike Ellison22-Aug-06 11:02
Mike Ellison22-Aug-06 11:02 
QuestionASP ADO Variable Problem [modified] Pin
Soot22-Aug-06 10:23
Soot22-Aug-06 10:23 
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


-- modified at 16:25 Tuesday 22nd August, 2006
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:27
Soot23-Aug-06 4:27 
AnswerRe: ASP ADO Variable Problem Pin
Guffa23-Aug-06 12:01
Guffa23-Aug-06 12:01 
QuestionIs there a way to do a find search in gridview? Pin
blurMember22-Aug-06 10:01
blurMember22-Aug-06 10:01 
AnswerRe: Is there a way to do a find search in gridview? Pin
minhpc_bk22-Aug-06 15:26
minhpc_bk22-Aug-06 15:26 
GeneralRe: Is there a way to do a find search in gridview? Pin
blurMember22-Aug-06 19:40
blurMember22-Aug-06 19:40 
GeneralRe: Is there a way to do a find search in gridview? Pin
minhpc_bk23-Aug-06 15:22
minhpc_bk23-Aug-06 15:22 
GeneralRe: Is there a way to do a find search in gridview? Pin
blurMember23-Aug-06 17:46
blurMember23-Aug-06 17:46 
QuestionASPNET send mail delivery is taking more time for yahoo Pin
Sudhakar Pasupunuri22-Aug-06 9:23
Sudhakar Pasupunuri22-Aug-06 9:23 
QuestionListItem as CheckBox Pin
NaNg1524122-Aug-06 8:13
NaNg1524122-Aug-06 8:13 
AnswerRe: ListItem as CheckBox Pin
Mike Ellison22-Aug-06 10:56
Mike Ellison22-Aug-06 10:56 
GeneralRe: ListItem as CheckBox Pin
NaNg1524122-Aug-06 10:57
NaNg1524122-Aug-06 10:57 
AnswerRe: ListItem as CheckBox Pin
tb970422-Aug-06 22:58
tb970422-Aug-06 22:58 
AnswerRe: ListItem as CheckBox Pin
tb970422-Aug-06 23:11
tb970422-Aug-06 23:11 
QuestionASP.NET & VB2005 how to create alert messages? Pin
Solly7422-Aug-06 7:32
Solly7422-Aug-06 7:32 
AnswerRe: ASP.NET &amp; VB2005 how to create alert messages? [modified] Pin
ToddHileHoffer22-Aug-06 7:46
ToddHileHoffer22-Aug-06 7:46 
AnswerRe: ASP.NET & VB2005 how to create alert messages? Pin
Suresh Pirsquare23-Aug-06 0:39
Suresh Pirsquare23-Aug-06 0:39 

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.