J
|
Jane 3/17/2009 |
Hi, str = "select FieldName from TableName" Set rstmp = server.CreateObject("ADODB.Recordset") rstmp.open str,dbConnection Response.Write "PROJECT NAME : " & rstmp("FieldName") rstmp.close set rstmp=nothing |
B
|
bhicks11 author 3/17/2009 |
Hi, use custom event (Insert ASP code snippet option on the Visual Editortab) to select and print PROJECT NAME value on the print page. Here is just a sample:
|
B
|
bhicks11 author 3/17/2009 |
I did this and nothing happens. If it helps the Project Name is also the login name.
|
B
|
bhicks11 author 3/17/2009 |
I did this and nothing happens. If it helps the Project Name is also the login name.
|
B
|
bhicks11 author 3/18/2009 |
Hi, use custom event (Insert ASP code snippet option on the Visual Editortab) to select and print PROJECT NAME value on the print page. Here is just a sample:
|
J
|
Jane 3/19/2009 |
Hi, str = "select FieldName from TableName where Fieldname2='" & Session("UserID") & "'" |