Small Test For Non .NET Users

I made a small javaScript that checks and see if the user has .NET installed on his computer... but the problem is that I HAVE .NET, so I can not check that it works when you do not have .NET.

can someone that does not have .NET installed on his computer, go to the following URL and let me know that he gets a correct reply? (that he does not have .NET).

View Replies


ADVERTISEMENT

Simple Test Script To To Send A Test Email Using CDO

I am building a shopping cart where orders are send by email. Even though it says it's sent, I receive nothing. So I did a test script to send an email using CDO since we are using an exchange server for email and it's on the same network as the site. Code:

View Replies View Related

Logging Users :: Transactions My Users Perform

I want to be able to log in a database any transactions my users perform. For example logging in, requesting a page, downloading a resource, logging out etc.

What is the most practical way to code this? I was thinking of trying to use an include file which would have a function to add a log in the database for each page on the site or when a particular action is performed.

View Replies View Related

Big JPG -> Small JPG

Do you know if ASP can change a JPG file in a smaller defined size JPG.Do you have an exemple of it.Imagine the JPG is on the C: drive of my server and called PIC.JPG.

View Replies View Related

Small Business SDK And ASP.NET

I am creating a module/WebApp that interacts with the new small business
accounting 2006 beta SDK. The SDK requires a top level object to be created.
I then use the “.login(companyname, database name)� method to login. I can
then add, edit, delete information in the application using this object.

I need advice on what scheme to use to kick off the login the first time the
user runs any code that interacts with the SDK. I would like the logged in
object to persist for as long as the user needs it. For examples each user
gets his/her own Small business object to use while at the site. This will
greatly speed up the application/module. Any advice would be great.

It uses windows account to login. It just needs to know the database name
and company name. The login running the web server will be used.

Code:

View Replies View Related

Small Application

I am confused about SQL server & microsoft access. Which is better for small application?

View Replies View Related

Small Recordset Error

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.

/recourse/development/lettertemplates/regionoff-e.asp, line 11
---------------------------------------------------------

I can't seem to figure out why its giving me this error because my code is as follows: Code:

View Replies View Related

Take A Video And Split It Into Small Videos

1. "Partition interval time slots". For example take a 30 sec video and create 7 images at 0, 5, 10, 15, 20, 25, 30 second intervals and the user from there can play each of those time frames INDIVIDUALLY.

2. Take two or more of these time slots and fuse them together forming one solid playable video. I guess you could do this by simply putting them together in windows media player (playlist) but not physically making one solid file.

I don't know if ASP can do any of these functions. I was given the option to take on a task of converting a ColdFusion application to ASP.

View Replies View Related

Small Error Bringing Up A Page

I have the interface for my news managment coded so I decided to copy the code from the old pages into the new clean and user friendly layout. However I ran into one problem, now pages won't open for some reason and I get the same error every time! Below is the error I get and in the next post is the code...

Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: ''
/hwnetwork/admin_view_users.asp, line 86

Page:
GET /hwnetwork/admin_view_users.asp

View Replies View Related

Dialog Box Too Small In Windows XP Environment

I have a problem with dialog boxes. When in Windows XP, the dialog boxes are too small, but when in other environments it is ok. What should I do to accomodate all environments?

View Replies View Related

As To Configure It Photo To Appear Small E To Extend When Click In

I have a pa'gina (view.asp) that he shows the photo that is cited in the data base. The problem that happens is that if I sending the photo well great it appears in view great. I would like to make the following one, to program so that the photo alone appears in a size small e when the user to clicar in top of it, I open one popu with it of the real size that it is. As I can make this I do not know to make. They see my code view.asp that it shows the photo. Code:

View Replies View Related

One Large, Or Multiple Small Session Variables

Does anyone know the detail of how session variables are actually stored?
The question I'm trying to answer is:

Is it more efficient to store and retrieve multiple short strings :

a) in multiple small session variables
b) concatenated and stored as one large session variable
c) inserted into an array and stored in a session variable
d) it's all the same. Who cares?

Keeping in mind that for this application each piece of data will be
retrieved for every page.

I've read that storing a dictionary object in a session variable is bad
ews - something to do with ending up with thread in your apartment, or
something ;-)

What I'd really like to do is create an XML object and store that in a
session variable, but I'm guessing that would be pretty inefficient unless
it had quite a lot of data in it.

View Replies View Related

Field Too Small :: Microsoft JET Database Engineerror '80040e57'

I'm making a page that adds form data to an access database. When I press send, I get this error:

"Microsoft JET Database Engineerror '80040e57'

The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data."Is there any way of making the form field bigger?

View Replies View Related

Test In Ie 4.0

My clients have 4.0 and I can't seem to get 6.0 off of my W2K machine. Any suggestions?

View Replies View Related

How To Test For Nothing

I have:

Dim foo
Set foo = Nothing

If foo = Nothing Then
response.write "foo is nothing"
Else
response.write"foo is something"
End If

I get an error in the line "If foo = Nothing Then". It says:

"Object variable not set"

How then do I test if something has been previously set to Nothing?

View Replies View Related

Cookie Test?

I have always used this in ASP to test if the client is accepting cookies:

<%@language="VBScript"%>
<%
Session ("nc") = 1
If Len(Session("nc")) = 0 Then
'Cookies Off
Else
'Cookies On
End If
%>

But I only ever tested it in Microsoft Internet Explorer 6 though not sure. Anyway with Microsoft Internet Explorer 5.5 SP2 Len(Session("nc")) <> 0 always whether cookies are on or off. Can anyone suggest a better cookie test that will work in most browsers?

View Replies View Related

Test ASPs

I have a PC running Win XP Home and want to learn how to write ASPs.
In order to test them I think I need a web server installed on my PC. Since
I don't believe IIS can be run under Win XP Home I downloaded and
installed the Apache web server. I'm stuck at this point and would appreciate
opinions on whether I am on the right track, and, if so, advice on the following.
1. Having written a test asp page how do I use Apache to test it?
2. Can Apache handle VBScript on an ASP page? From the info on the
Apache web site I don't think it can.

View Replies View Related

Test Engin

iam making asp test engin and i dont want the user to use the keyboard
so is there a way to disable the keyboard of the computer that have the
exam on ? its not a website world wide. i will make it on my room computers.
is it possible ?

View Replies View Related

How To Test If Object Has Something Or Not?

The current code (see below) works. But, I wonder if there's better way to test if a node object has something or not.

<%
...
' want to find if /Root/Node's id attribute is 1,
' if yes: get its child node <num>
Dim nodeA : Set nodeA = xmlDoc.selectSingleNode("/Root/Node[@id='1']/num")
' test if nodeA have something
If TypeName(nodeA) = "Nothing" Then
' -- NO: nodeA has nothing
Else
' -- TypeName is "IXMLDOMElement"
' -- YES: nodeA has something
End If
...
%>

I have tried other functions, such as IsEmpty(), IsNull(), IsObject(): none can
get the result I wanted.

View Replies View Related

ASP Test Script

What I have is a ASP test script that can grade online tests and give the test results at the bottom of the test page itself. What I need is the test results to be passed on to a test results page with the score of the test that was taken. I have a problem getting the test results intact over to the test results page.

View Replies View Related

Test For SQL Injection

how do i test for SQL injection ?
sdo i do a SELECT statement in my username login?

View Replies View Related

Test For Cookies

I have an asp script which is posted to by a form. On the script I need to know if cookies are enabled.

Therefore I need to make the form post to a different script which sets a cookie and does a response.redirect to the main script. However, how to I make the request object get forwarded to the second script with the response.redirect?

You cannot use server.transfer as the test for cookies will not work properly.

View Replies View Related

Test DB Server

In ASP VBScript,is there a way to programmatically test if a SQL Server database server is alive?

I want to use a connection string to a mirrored DB server in case the primary DB server fails. This failover is easy in ASP.NET, which supports DB mirroring and a the specification of a secondary server in its data provider.I want to hack together the same thing for my classic ASP apps.

View Replies View Related

Taking Test.doc

How to get test.doc from following string Using VBscript

"Files uploaded:test.doc (54326B)"

File size and file name may vary dynamically,and I have to pick file name with ext from them.

View Replies View Related

Test Hyperlinks

anyone know some good ASP code to go through a page and test the hyperlinks to make sure that they are valid. Couldn't find anything good yet, but if someone knows of anthing.

View Replies View Related

Test Variable

How to I test a varable to see if it contains a number and not a text value?I want to use this to detect if people have edited my get strings in the URL field of the browser, before it gets send to the next page.

I am sure it is simple just forgot, had a search on yahoo and could not find anything.

View Replies View Related

Timer To Test ASP

Well i use Timer to test ASP scripts how much time is needed for rendering. But how much time, approximately a heavy asp project like CMS or FORUM should do?

View Replies View Related

Online Test Like Brainbench

I am creating an application for online test in ASP.While taking test i want functionality as on brainbench when we take any test there. Only difference i want is that there will be 5 questions in my test to be solved in 10 minutes.And all 5 will appear on one page.
I am done with other parts.but i am unable to find the logic for restricting time.And dont know what logic should i implement so that timer should not start again even when he goes back and returns to the page again.I have used javascript timer.

View Replies View Related

How Do I Test To See If A Comma Is Present ?

I am using this code below to count the number of variables after the comma:

jumvar = 43352352,325324452,235234452,24523454
jumvarsplt = split(jumvar,",")
valnum = CInt(ubound(jumvarsplt))

But i would like to know how to test if the variable has a comma before running the above code.

View Replies View Related

Radio Button Test

I'm trying to make a little 2 question test using ASP. What i've got so far.

*database connection code and other stuff*
Now the radio buttons (Q1.asp)

<input type="radio" name="jim" value="Answer1" >
<input type="radio" name="jim" value="Answer2" >

But i want the answer value to be a value from a database. Is that possible? value="request.querystring("Answer2") Where Answer2 is the field name? Is that wrong?

And for the code to check if it's right i want it to be able to compare it to a value in the database. (CHECK.ASP) Code:

View Replies View Related

Display Test File

A client wants to include a news page on his site . This would change basically weekly. I have tried to explain basic HTML ie headers etc but he cannot or does not want to understand.

Is there a way to say for him to create a word file or equivalent with nicely Bolded coloured headers etc. There will only be three or four news items a week.

View Replies View Related

Test For Submit Button

I need to dynamically generate some submit buttons = the easy part . But i'm not sure how i can test which button has been used to submit the form and what it's value is .
Anyone know this?

View Replies View Related

Test If File Exists

I have a left menu that is accessed and displayed via XMLHTTP (it resides on the same server). Some sections of the web site don't have a "menu.asp", so a "Page Not Found" page is returned, which doesn't look great in the menu column.. Is there a way to know if a page exists before using xml.responseText to pull it?

View Replies View Related







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