Problem With Query Inside Asp Code

i have a query that runs fine in oracle, but when i try and run it through my code i get an error :

Microsoft OLE DB Provider for ODBC Drivers error '80040e31'
[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation

/test/WO_Metrics.asp, line 129

i know that it has to do with the way my query is coded, i think maybe with the nested query. because it worked fine before i put the nested query in. is there a special way to handle nested queries in aps? Code:

View Replies


ADVERTISEMENT

VBA Code Inside ASP

I have a front end with all the code and a backend with some tables. Want to convert this into website database. Most probably convert the frontend into ASP. Is this the only way? Can one use the VBA code inside ASP with translating the VBA into ASP?

View Replies View Related

ASP.Net Inside ASP Code

I need to make a search to search our database that can be put on different customers websites. So I was planning on making the search a reusable asp.net control. But a lot of our customers websites are written is ASP. So Is it possible to call an asp.net control inside an asp page?

View Replies View Related

Put Code Inside HTML Tag

How do you put an asp code inside an html tag?

This is not working:

<a href="contact.asp?subject=Question about group
<%=(Recordset1.Fields.Item("group_name").Value)%>">Send a message</a>

I am actually putting above info in an Access field. People would be able to send me email through a form in contact.asp and I want the subject line reflect which page they came from.

View Replies View Related

Embed Perl Code Inside Asp

I have 2 issues that i could not find a solution,

1) is it possible to convert a "cgi" code into asp page.
2) are there any tools to do this conversion,
is it possible to embed the cgi code inside , for example html, or jsp or asp.

View Replies View Related

How To Use Sql Query Within Code

I'm a beginner with asp but i have an asp page that returns all the names and email addresses of people that i have stored in my database.It returns it in table format.This is all working fine - im using an ms access database. heres the code: ...

View Replies View Related

Write SQL Query Code Problem

I have two tables, Advertisers and Ads. There is a one to many relationship from Advertisers to Ads.

I want a listing of Advertisers that haven't placed any Ads. I'm having a mental block on writing the SQL to pull that data. Any ideas.

View Replies View Related

INSERT Query Code Problem

I have a problem with my INSERT query, I have tblDueDates, tblClient and three main forms.……..but I get errors when trying to insert payments. I have tblClient and tblDueDates and 1.frmDueDates, to insert and display the due dates for the payments ,

2.frmPayDateList in order to display the Due Dates of all clients in a list according to their due dates and 3.frmClientsPayedrecord, to see the payments of each client after the user clicked on the ‘payed’ button on the 2.frmPayDateList form. Form frmDueDates and frmClientsPayrecord are linked to tblDueDates.

But I get an error when clicking on that ‘payed’ button on the frmPayDateList. I use an INSERT query to insert the payments into that one table tblDueDates and also it should avoid duplication with this query and it’s where clause!!!!

View Replies View Related

Do Inside An If-statement?

I need to do a loop with some criterias that depends on an earlier database
query. I tried to do it this way, but it seems not to accept that the do
is inside the if:

if not objrs.EOF then
Do until updatearray(0) < objrs("updated")
else
Do While not fso.AtEndOfStream
end if
Blabla my repeating script here...
Loop

I'm getting this error:

Microsoft VBScript compilation error '800a03fb'
Expected 'Loop'
/x.asp, line 46
else
^

It seems somehow that the do is "stronger" than the if statement, as it didn't
even help doing it this way: Code:

View Replies View Related

Using ASP Inside An ASP.NET Page

I've inherited webmaster duties for a website done in ASP.NET. After much trial and error I've figured out the architecture of the site, and have a template for the area of the page that contains the content. I need to pop in a dropdown menu, nothing fancy, like the one on this Post New Thread page for "Category".

Does anyone know where I can get the syntax for one? Or does someone know ASP.NET and can write out a simple dropdown menu code for me?

View Replies View Related

100% Height Of A Div Inside A TD

I've put a div red with some text inside a TD, but its height is less than 100% of TD height as you can see.

I've defined the following styles:

div.test { background-color:red; height:100%; width: 100%; }
table.test { border: 1px solid #CCCCCC; background-color:yellow; }
td.test { border: 1px solid #CCCCCC; }

does anyone know a solution ? Code:

View Replies View Related

HTML Can Be Inside ASP, Can PHP

I see that you can have HTML code inside an asp file.
Can you have php code inside an asp file

View Replies View Related

For Loop Inside Do While

is it possible to do a for loop inside of a Do while not.

View Replies View Related

Recordset Inside A Loop

Is it common practice to create a recordset object inside of a loop? Does it create multiple connections to the database?

View Replies View Related

Iframe Inside A Form

I have a form which consists of Iframe

<Form method="pst" action="test.asp">
<iframe src="testingframe.asp" id="testfram" frameborder="1"
scroll="auto">
</iframe>
</Form>

testingframe.asp has
<table>
<td>
<tr>
<input type=checkbox id="checkedName" name="checkedName"/>
</tr>
</td>
</table>

How do i acess checkedName value in my main form .... ?

View Replies View Related

ASP Inside Javascript Function

is it possible to put an ASP function inside the javascript function?

e.g.
<script language=javascript>
function sample()
{

<%
here goes the asp code
%>

}


</script>

View Replies View Related

Website Inside Frame

We need to display certain websites inside a frame on our website and I use the response.redirect command in VBScript.
The problem is that some websites take over the whole browser, how can I stop this and force a website to be loaded inside a frame?

View Replies View Related

Getting Text Inside A String

Could anyone tell me how to select the first three characters in a string, then put inside into another string.

View Replies View Related

Search Inside A PDF Document

I need to write a search function which should be able to search text within PDF documents and (if possible) creat a link to that document / page .

View Replies View Related

Use Variable Inside A Recordset

Having an issue trying to access a variable that is populated by a value inside a recordset that I want to use in another statement. I've included the source code below:

" Do While Not objRSZone.EOF

strSuburb = objRSZone("suburb")
strZone = objRSZone("zone")
strPostCode = objRSZone("postcode")

If frmSuburb = strSuburb Then
Response.Write "Zone for " & strSuburb & " = " & strZone & " , Postcode = " & strPostCode & "<br>"
strShipZone = strZone
Response.Write strShipZone
End If

objRSZone.MoveNext
Loop "

So what I want is to use the strShipZone variable somewhere other than this place above. But it doesnt work, as it is on the loop, if i put it outside the loop it is populated by a wrong value.

View Replies View Related

Message Box Inside Page

How can I send messages to user like messageBox from a ASP page without doing postback over the page.

View Replies View Related

Input Inside A Asp Page.

Was thinking of having an array inside a asp page. I'm rather new to this.How do I begin. my asp page should work as follows.One html page include mail adresses. We receive a lot of junk mail and I was thinking of how to avoid this. Was thinking of creating a asp page with an inout string inside the asp page. The input number should refer to the users mail adress.

We are only four people in our office, so that should be simple to manage.The html code should be like "redirect.asp?" for the first mail adress. and redirect.asp?What's the syntax inside the asp page?

View Replies View Related

Validation Inside Classes

I'm currently new to OO programming with Classic ASP and have been stopped dead in my tracks on the issue of validation inside classes and if I should be doing things that way. I have been using a User class and it has methods such as Save(), Update() and Delete(). Particularly with the Update() method I'm unsure if I should be validating my form(s) within the class or on the actual edit.asp page that uses the Update() method?

I have two types of edit pages; one for Admin users and one for the My Account page. On the My Account page if the user wants to change their password they have to enter their current password, a new password and then their new password again to confirm .

If an Admin user is updating that same user's info they do not have to go through those steps and they can simple just change the password by typing it in. The point here is that there are two separate cases of validation rules on two separate pages that both use the Update() method. Do you validate your forms inside your classes or outside?

View Replies View Related

Put A Semicolon Inside A String

how I can get a semicolon inside a string? So far, when I've tried to put a semicolon inside a string, I've gotten this error:

Quote: /Default.asp, line 39
Response.Write("<h4 class=""news_headline""><a href=""news.asp?fileindex=" & arrayLine(i) & ""&;mon=" & lCase(Left(MonthName(month(date)), 3)) & year(date) & """>")

View Replies View Related

CheckBox Inside A Repeater

I'm still learning .Net and have an ASP.Net app that I'm working on. On this particular page, I need to put a bunch of checkboxes on the side of the page, and the text for each is derived from the database. So I can't just hardcode the checkboxes. I'll have any number of them, and possibly even 0.

I am told that you use a Repeater control for this, but beyond that, am not sure what to do. Can someone show me?

View Replies View Related

Excel Wb Inside Asp Form

i am unable to figure out some way....so pls if anyone has implemented then do suggest me. i need to have a link on clickign to which i want excel workbook to open (a previously created template) below the link in the form.

how can i do it. i find lot of info on opening excel as an application freshly. i want to
open in the form itself. is it feasible or i am just wasting my time searching info for it.

View Replies View Related

Html Tags Inside Asp

I've written a script which is still trying to concated couple of messages then send an email. Those messages are a reuqest objects coming from another form as demonstrated below: Code:

View Replies View Related

Db Search Inside A Loop

There are two table in my Access database e.g. people and orders. There is a one-to-many relationship between these. At the moment I get a recordset of all the people. I put the results of this into an array (using GetRows) and close the array and set it to Nothing.

Then on the page I have a loop which goes through the array of people and for each one performs a different db search of all the order linked to that person. On the page I have got it displaying the people perfectly but for each search the RecordCount is coming out as -1. Yet, I know there are orders associated with each person.

View Replies View Related

Function Inside Variable

I'm trying to use a variable like a file and I do not know if it is possible, like this:

varfunc=chr(60)&chr(37)&"function addone(varint) : addone = varint + 1: End function"&chr(37)&chr(62)

Now I have a addone function inside varfunc.

The value of varfunc is <%function addone(varint) : addone = varint + 1: End function%>

Is it possible I use varfunc like a file or something to make the function active? There are some operator like a pointer to variable or somehow to eval like a code block?

View Replies View Related

Need To Convert This Sql Query For Access To Identical Sql Query For Sql 2005..

My code retrieves a username and a password from a form. Then this information is compared to some usernames and passwords that are stored in a database. The important thing here is that the comparison must be case sensitive meaning that "passWord" is not the same thing as "password"

I have this code, working fine in access 2003

SQL = "SELECT * FROM users WHERE StrComp(username_column,'" & entered_username_in_form & "',0) = 0 AND StrComp(password_column,'" & entered_password_in_form & "',0) = 0"

but get the following error when I run it against my sql 2005 database.

[Microsoft][SQL Native Client][SQL Server]'StrComp' is not a recognized built-in function name.

I don't know the corresponding t-sql for the query.

View Replies View Related

Setting Cookies From Inside Function

I have a function that I'm using to loop through some db query results and put them into a table. Inside the function, I have a line to add certain values to a series of cookies (kind of like a cookie array) as such:

response.cookies("sclot" & ZZ) = LotNum
'response.write(request.cookies("sclot" & ZZ))

If I uncomment the second line, I pull my values just fine from inside the function. The problem is, if I use the exact same line to try to pull the values outside of the function, or from another page, it returns nothing. The whole reason I'm putting these values into cookies is so that I can pull this list up on another page, but I don't seem to be able to. Is there some reason that I would not be able to read a cookie that I set inside a function outside of it?

View Replies View Related

Searching Inside An Uploaded .doc File From

This is what I need to do:

A client uploads a document (a msword .doc file) to the server, I need to search a string that document and find specific words in it (this is an Application to a School, most of them look the same, so all you can do is replace the school name in the application, but sometimes people forget to do so and get rejected for sending inappropriate application).

So I need to find in each Application possible names of other schools and alert about it.

I'm writing in ASP (I can use ASP.net as well). I DON'T HAVE ACCESS TO THE SERVER (it belongs to the hosting company, and there's no way of installing anything there).

View Replies View Related

Session Vars Collection Inside COM

I was wondering if there was a way to pass the entire collection of ASP
Session variables into a COM function.

Inside COM, I need to have something like

Public Function ProcessVars(ByRef Session as <SomeSessionVarType>)
End Function

Which reference do I need to include in my VB6 project?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved