Choose Data From DB Randomly

i need to choose a data, randomly, in a database based n category (cat1, cat2, cat3, cat4, cat5, cat6). i only need to show 1 data of each category in the html page. kindly inform where to find a sample tuts for this.

View Replies


ADVERTISEMENT

What CMS To Choose?

What Content Mgmt Systems do forum members and ASP pros use?

I'm looking for something fairly sophisticated (WYSIWYG editor, user permissions, versioning, audit trail, etc) that doesn't cost an arm and a leg. It should be pure ASP, and (naturally) available with full source code.

View Replies View Related

Choose A Folder With ASP.Net

I want to allow a user to select a windows folder for reading. I have tried
to work it out without success. Can anyone help me out or point me in the
right direction. I am an experienced VB6 programmer but this is my first
ASP.Net project.

View Replies View Related

Can I Choose The Session ID ??

Is it possible to set the sessionID = value?

I am storing a shopping cart in a in a temporary table and with the sessionID identifying which items belong to the different users. Ideally I want to set it to a random GUID or number so it will make it very hard to guess the next session ID and gain access to another cart if they knew what they were doing.

Any ideas on how to set the sessionID value? Do I need to go that mush in to detail?

View Replies View Related

Choose A Record

i have a database with one table... there are about 10-20 records in the table. i would need to create a page that displays a few descriptive fields of the records. just something like this.

ID NAME PRICE
1 type1 345
2 type2 567
3 type4 1000

just a simple list like this in a table, also each record would need to act as its own hyperlink, so when clicked on. using the primary key i presume, it loads another page specifically for that record. almost like a catalogue..if someone could please direct me to a few tutorials or online examples of this kind of procedure.

View Replies View Related

Choose Oracle Version

I've just had a problem with an ASP page not connecting to one of our Oracle databases. It turns out that the web server has Oracle 8.1 and Oracle 9.2 installed and that my
ASP page was trying to connect with Oracle 8.2. The TNSNAMES.ORA file for this version of Oracle is not maintained and did not have the correct entry I need.

Is it possible to force my ASP pages to use Oracle 9.2 until the migration is complete and Oracle 8.1 is removed?

My connection string looks like this:

Session("PROVIDER") = "Provider=OraOLEDB.Oracle;Data
Source=ht;User Id=" + Request.form("username")
+ ";Password=" + Request.form("password")

View Replies View Related

Choose And Enter Value One Optional

I like to validate 2 textboxes. Users ken choose to enter either one. Therefore if nothing is entered for both, im suppose to prompt him to enter at least one. If he enters value into both txt boxes, I'll prompt him again. Dunno to post this here or @ javascript forum.

View Replies View Related

Choose Image From The Server

i have a folder contain many images in a server, i got to do a web application allow user to choose image the from the folder in the server to be their signature, may i know how to get into the image in the folder on the server?because from what i know i can do a textfield to browse to the file in my local machine, but how do i browse throught the fiel in the image folder that i mention?

View Replies View Related

Choose Recordset In Stored Procedure?

I have a SQL 2000 stored procedure with several recordsets. Is there a way to query a specific recordset in a stored procedure, or will I have to loop through each recordset?

View Replies View Related

How To Choose A Random Record From A Database

ill have a database with 1 table and 3 fields:

ID FIRSTNAME LASTNAME

(the ID field will be the auto incrementing index)

there might be 10 records in the DB, there might be 10,000. i need to open the DB and randomly select a record (and then display the name, which i dont have a problem with)

how can i randomly select a record? im guessing id have to open a recordset and check the count to get the number of records, so lets say there were 100 records. i imagine i would have to generate a random number between 1 and 100....

View Replies View Related

How To Select Randomly

how can I do a "select" action and select lines randomly, for example:
"select * from items where views>100" and to choose from that 5 objects randomly.

View Replies View Related

Randomly Generated Strings

I used to have a piece of code that would generate a random string of
8,16,24 or 32 characters in length.

I got it from this group, does any one have this piece of code?

It will be used for a double opt-in email newsletter.

View Replies View Related

Randomly Generated Filename

How could I create a random filename for a single-use download? So, if a user was to download a file from a site it would send them a unique filename that could only be used once. That link would not be available after the download completed.

View Replies View Related

Randomly Generated Variables

I am relatively new to this generation of variables in ASP. I am unable to proceed from here. Can somebody advise?

Challenge :

I get number of participants in an exam, from a sql statement and stored into a variable called headcount.

After that, I am using the following to initialize randomly generated variables. For example if there are 4 students in the class, I intend to get student1, student2, student3 and student4, all of them initialized to 0.

For j=1 To CLng(headcount)
Eval Execute("student" & j & "=" & 0)
Next

Now we are trying to find out question wise defaults in the test. I have a for loop that does traverse through all the questions in the test. As I go question by question, if there is any failure I would like to increment the errorcounter of that participant.

Which means .....

View Replies View Related

Randomly Select A Name From A Csv File

I've got a csv file with names, addresses, emails, etc. I've been asked to randomly select a name from a csv file. I've found plenty of RandNum examples, but I'm not sure how to apply it to these names. Can anyone point out a sample I could use?

View Replies View Related

Pages Hang Randomly

I have a Windows 2003 Server Web running 5 web sites. Every few days, the ASP pages stop responding. There are no events in the event log. The HTML pages are still served successfully. These pages have no database interaction (others use MySQL). I have to restart IIS in order for the pages to work again. I haven't been able to find anything about this issue on the web. Has anyone seen this before? Any idea how to fix it?

View Replies View Related

Randomly Generated Validation Code

I would like to incorporate a Randomly Generated Validation Code Immage into my New Registration page (so when users register they have to enter a validation code produced by the immage).

View Replies View Related

SQL Randomly Select A Record Using Access

I want to select a random record from a table within my Access database, however I am running into problems. When the page is executed, it always shows the same record. Code:

View Replies View Related

Banners Disappear Randomly From Pages

We have 2 copies of our web application - Development and Checkout. We have
noticed that when the QA quys go through our QA version, they will sometimes
find that pages are missing the banners. The banners are created by VI
using the themes and layouts.

All of the other theme/layout information is
fine, and both sites are using identical Site Diagrams. We have even tried
copying the site diagram over from development to QA again and recalculating
the site, and the banners stay missing. Can anyone tell me how to fix this
and what is happening?

View Replies View Related

Select 4 Records, Randomly From Database

Is this do-able with ASP / VBscript?

-- I have a database with user records (name, photo, etc. etc.)

I want to use asp to generate (on the homepage) a series of 4 randomly selected 'user records' from the database -- say just the headshot photo or name from the database.

In addition to the recordset being randomly generated (i.e. our of about 50 records, only records 4, 18, 23 and 26 are displayed) I need to MAKE SURE they are not duplicated (i.e. out of the 50 records, records 4, 18, 23 and 23 -- where the last two are duplicates).

Is there a way I can pull this off and how do I go about it exactly?

View Replies View Related

Session Variable Randomly Mixed Or Lost?

Windows 2000 Server SP3
IIS 5.0
NET FRAMEWORK 1.1 SP1

SessionState="InProc"

Antivirus deactivate

No changes on main files (web.config, machine.config, in)

No exist Active Directory (changes in ACL are not exist)

In machine.config LogLevel="All"

No events registered in Event Viewer.

aspnet_wp.exe not recycled never.

Scenario:
Web site accessed by multiple users at the same time. Some user data are
stored in a session variables. Randomly one user view data of another
user.

It ocurrs in two different machines.

What can be?

View Replies View Related

How Can I Randomly Update Access Database Content

I am trying to get an access random image script to simply update the content from a folder on my server...... Automaticlly without having to go into the database to add a the new image and location, i just want it to randomly select one. is this possible?

View Replies View Related

Input A Randomly Alpha (letters) In A Specific Field

what i want to do is to put 2 fields in my table , username and password

what iwant to do is to create a page that ask you to unter your username only ,and when u click submit the other page will add new record for the username u enter and will input a randomly alpha(letters and numbers) to yr password field , so how can do this random thing throw the asp"!?!

View Replies View Related

Asp Pages Randomly Showing As Blank White Pages

Using IIS 5.0 and sometime some asp pages (absolutely
randomly) showing as blank white pages. So far only one
way of fixing it - restart whole server. Restarting IIS,
or specific web server not helping, only whole server.

I enable server side and client side debugging, but no
errors showing up...

In view source pages always look like this:
-----------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html;
charset=windows-1251"></HEAD>
<BODY></BODY></HTML>
-----------------------

Any idea why it can happened and how to fix?

View Replies View Related

Pass Bill To Data To Ship To Data

I'm using DW MX 2004 to build an asp based eStore. I have a checkout page created with both the billing and shipping information in the same form. I'd like to add some code and a button to activate it to copy the code to the shipping info (but it can't submit form). Also the State choice is a drop down list based on a recordset. There are other behaviors attached.

View Replies View Related

Data Type Mismatch When GETting Data From An Access DB

We are running into problems with the script below, whose purpose is to allow users to choose values from drop downs populated by an MS Access DB.

THE RESULTS:
(returns a blank page with only HTML Titles)

THE SCRIPT:
(you may notice this is a modified sample script): Code:

View Replies View Related

Data Update To Data Base

Dreamweaver created code to update to data base. But when testing on website i get the following message. I have no clue what it might be.
Microsoft JET Database Engine error '80040e14'
Syntax error in UPDATE statement.
/admin/update.asp, line 111
line 11 is strName.execute
I read it might be forbiden characters in the data base field names or spaces...
but i don't have that. the names are userName, userLevel, ID, Password.

View Replies View Related

Data Grid Or Data Matrix...

This seems a very complicated task, so I welcome any
input. My boss wants a data grid or matrix of the top 6
orders with ordered items, and products, for a particular
customer and he wants to see it like this:

products down the left side
orders across the top
number of items under the respective order number column
across from the corresponding product.

I hope that makes sense.
I have three tables. Products, Orders, Orderitems. I
don't even know where to start. Many thanks in advance
for any input offered.

View Replies View Related

How To Get Data From The User In One Page And Display Related Data In A New Page

how do i get data from a user on one page and display the result on the other page
actually i have written a prgoram that displays a set of checkboxes and based on the checkboxes selected the related data is displayed .but the problem is the data is displayed on the same page below the list of check boxes. Code:

View Replies View Related

Passing Form Data Using ENCTYPE="multipart/form-data"

I have a form that has the option to upload a file at the bottom. If you select a file it works fine but if you leave file selection blank the forms bombs. This is not how I want it to work. On the form you need to use ENCTYPE="multipart/form-data" in the form tag.

On the processing page I need to use Set to assign a variable to the form data. I tried using IF on the variable assigned to the file path but it bombs out telling me "This function is not supported". Is there any other way I can check to see if curQes has a value assigned to it?

View Replies View Related

Using Csv Data

how to call a csv file into a data array. I was told I can use :

csvArr = split(csvLine, ",")

So long as I have no embedded commas in any field. what Im not clear on is the syntax.

how do I call the csv into the script (so the script knows to use the csv)

View Replies View Related

Add Data

I only want to input the following information if it is not a zero length string. Any
ideas on how to do it?

Crate&Barrel = Request.Form("Crate&Barrel")
Crate&Barreladdress = Request.Form("Crate&Barreladdress")

View Replies View Related

XML Data

How can I display data from an XML file in ASP?I want to use an XML file instead of an Access or SQL database and would like to display this information the same as I would if I were using Access or SQL as the datasource.

View Replies View Related







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