Pulling Information

I am working on a project involving pulling information from Active Directory (Name, email address, contact no.) and sticking this information in some SQL tables. Using ASP, How do I enable windows authentication (username and password from active directory) ?.

In other words, when the incharge user wants to login to the tables on the web, he must use his/her windows username and password ? On the same project, I want to assign different groups with different security levels. (something similar to the Active Directory security groups), and let the admin asign rights to each group in order to control access and privilege of each user within a group.

View Replies


ADVERTISEMENT

Pulling Name From Database

I am working on a site where you must log in to access the site. On this site we have a link to an off site that needs a user name and password to access it. We have made the user names and passwords the same for our site and the offsite.

the thing that we are doing is when they click on the link to the off site we want to pull thier name and password form a data base (which is already made) and input it into the user name and password.

I am not sure exactly how to code this to pull the name from the data base.

I as of right now have it HARD CODED with a user name and password and it works. But I need to some how have it pull the "correct" name and login.

I work for a smaller Insurance firm and these names are for our reps. We can not have just anyones name getting pulled from the database due to each rep is working on differnt cases. Code:

View Replies View Related

Pulling Data.

I have a login script up and running and i have used a session variable to greet the user when they successfully login. what i am trying to do now is create a query to select other information from my database using the session variable, their username. i have been trying all sorts of different things and just cant get it to work.

I know that i have to do a select * where users = session variable(username)

but i dont get where in the code i put it... Here is the code of my protected page: Code:

View Replies View Related

Pulling Data

I came across a topic regarding joining three tables, but couldn't apply it to what I am doing. I have three tables: Accounts, Reservations, Invoices. My goal is to put together a statment for each Account showing all outstanding Reservations and Invoices in chronological order.

Both Reservations and Invoices tables have their own date fields (Reservations - actual date of service, Invoices - date when invoice was created).

so basically Go through Accounts and then for each account that has either UNPAID Reservations or UNPAID Invoices populate a list of transactions where Reservations. ServiceDate and Invoices.CreatedDate should be listed in one column and sorted chronologically.

View Replies View Related

Pulling Data From A Database

Here's my scenario: I send an email to my customers which contains an embedded URL with a recordnumber within it. What I want to do is create a variable for the recordnumber, write a select statement against my database using the variable as the argument for the WHERE clause, and display the results of the SELECT (its always a single value) within an HTML page.

Here are snippets of the code. The recordnumber is represented by strCallID and the resultset that I'm trying to display is strATG (shown near the bottom of the HTML)
All the connection string stuff has already been taken care of, so that's not included in this code:

View Replies View Related

Pulling Data From CSV Using VBscript

In have a CSV with 50 entries all are:

FirstName,LastName,UserName

I have a VB script that specifies were to put (in form) each field. So how would i select parse) it?

View Replies View Related

Pulling Records For A Table

I've created a form where the user should be able to select an option, then a second list will be populated based on that selection. The next part is where I am running into trouble.

The user can also select a time window which can limit their search, if they so choose. Code:

View Replies View Related

Pulling Headlines From Yahoo

The end result of what I want is to display news headlines for specific stocks on my website. I adapted the below code (very unsuccessfully) from pulling data points from yahoo to news headlines. Code:

View Replies View Related

Pulling Select Data

Say I want to sort the data in both db's according to similiar properties and read the results in a table.

View Replies View Related

ASP Pulling Email From Access

I have a database that has an email column that either contains an email address someemailaddy@mail.com or a value "n/a" All I want to do is loop through the column in ASP by checking to see if the "@" is in the address and if it is feed the email address into a mailto: href tag . I think something is wrong with my code because it just returns the name but not the href.

<% IF InStr(1, contactObjRS("Email"), "@") = 1Then %>
<a href="<A href='mailto%=contactObjRS("Email'>mailto%=contactObjRS("Email") %>"><%=contactObjRS("FirstName") %>
<%Response.Write(" ") %>
<%=contactObjRS("LastName") %></a></font>
<% Else %>
<%=contactObjRS("FirstName") %>
<%Response.Write(" ") %>
<%=contactObjRS("LastName") %>
<% End If %>ted.

View Replies View Related

Pulling Auto-number

Is there a way to pull the auto-number of a row entered into a database? IE, if I create an order, automatically pull the order_no from the order_table so that I can insert it into an order_detail table. There has to be a better way then selecting max order_id because that might not be the most current order? I know there is a buiilt in function in php what about asp?

View Replies View Related

Pulling Name From Active Directory

we just migrated to Windows Server 2003 and active directory. On our intranet I would like to personalize some of the pages my users hit. Let's say I login as petertom, when I go to my main page.

Is there a way to grab information form the fields in AD after a person authenticates? Is there a timeout, i.e., user logs in at 8:00 AM, but doesn't hit the intranet until 1:00 PM etc?

Eventually I would like people to get to secure areas without needing a login and password, but based on what AU or group they belong to, is this possible as well? Does any of this require changes to be made via IIS? (The intranet is running Win2k server, not Win2003).

View Replies View Related

Pulling Dates Out Of A String

I need to pull dates (years) out of a string. The string can either be a date range like "The date is between 1975 and 1978" or a single year like "The date is 1980".

View Replies View Related

Pulling User Accounts

i am having to write a password protection script that pull the user info from the user accounts on the server. so, that way people within the company can log on using the same user name and password as they would to log on to there computer/the network. any ideas? i will also have to give each user different permissions, but i think i can figure that part out.

View Replies View Related

Pulling Info From Database According To ID

Im getting this error message:

Microsoft JET Database Engineerror '80040e07'Data type mismatch in criteria expression.

Im passing a ID value to a pop up window attached to a variable named 'cat'.

Its passing it across fine, but the following code doesnt seem to be working in relation to it:

strsql = "SELECT cat_ID, art_Artist, art_Title, art_FDescription, art_Price, art_PicFull " &_
"FROM eventDisplay WHERE cat_ID='" & cat & "' "

can anybody see what im doing wrong here?

The following code:

View Replies View Related

Pulling ASP Code From Database

I have a two pages. The first is a data entry screen (which saves the form data to a DB) and the second page displays the text that was inputted on the previous page( pulled from DB). Is there a way to insert <%=date()%> into one of the text areas and have it
be processed on the second page when that text is pulled from the database?

View Replies View Related

Filtering Records After Pulling

I have a set of db results that I cannot filter completely in my query and I'm trying to figure out how to eliminate the "duplicate entries" after the fact.

My problem is I'm pulling columns for lot number and transaction time, but some (not all) lot numbers have two transaction times so I can't filter out these double entries with a "DISTINCT" statement in my query since the transaction times are distinct, but I only care about the first one. I'm looping through pulling my results as such: Code:

View Replies View Related

Pulling Data From Page

I am making an asp page that kind of gives a summary of a table I have on my SQL server. I have one field on the page of:

{rs_analyst_summary.TICKET_NUM}

Is there a way i can make another recordset that would use that field on the same page?

Basically what I have setup is a listing of all the tickets for one person. I need to have a score for each ticket as well. I have to start off on my first page by selecting my analyst. I want the page it links to have all of the analysts tickets and their score on each.

View Replies View Related

Pulling Plain Text

The site, which is almost finished, is at

http://site234.webhost4life.com/crgmdal7/

If you click most of the links in the gold nav bar, they will take you to various places within the site. But if you select the one called "Loads", it takes you to http://www.crgm06.com/aval.txt, which I have opened into a new window. As you can see, it's a plain text file, and it is on a different domain, which I have no control over. The data in there changes all the time.

Is there a way I can import this into one of the pages I have control over, and parse it out and display it the way I want? I've never worked with importing plain text that's generated on the fly before.

View Replies View Related

Pulling Out Hyperlinks From An Access Database

I have an access database that holds among other info, web addresses and email addresses. They are in a hyperlink format in Access. When I run the ASP code, they disappear. I want to pull the data out, with the web addresses as hyperlinks.

View Replies View Related

Pulling Data From Access Database

I have an access database from which I am pulling records. The main table contains all the info for a specific person and their business. I am retrieving the data and sorting based on last name, and I am also retrieving and sorting the data based on the specific region a person is in.

What I would like to do is also sort based on a sector that a person’s business is a part of. I would be able to retrieve all the records for each sector and sort them just as I did with region, but I don’t want to list ALL the sub-sectors. Code:

View Replies View Related

Pulling Data From SQL Server Table

I have a table with 30 or so columns. I'm pulling the data and putting them into variables like so:

objRS.Open query, db
UserID = objRS("UserID")

That's obviously not including the db conn info or even the query itself. Rather than manually typing out each and every variable and pulling the data from the RS object, is there a function that will automatically store all the data from the RS into its respective variable? I'm basically just lazy and the carpal tunnel kicked in after 10 or so variables.

View Replies View Related

Pulling Values From Request.QueryString

I need to pull values from another page to a form in my script. Basically i want to update an entry in my dbase and populate those current values to a form which is working fine for most of the form except the dropdownlist. Also i dont know if this is an issue but i have a "FOR" Script running in my dropdownlist constructed as follows:

<% For x = 0 to 1000%><option value="<%=x%>" selected="<%=Request.QueryString("CabN")%>"><%=x%></option><% Next%></Select>

As you can see i place the Request.Querystring object in my code but the dropdownlist doest recognise this and continues on until it reaches 1000 which at this point it stops. I want the drop downlist to reflect the same value as that which exsist already in the datebase for it. What am I doing wrong?

View Replies View Related

Pulling Date From Extensionless File

i attached the file, i want to know if it would be possible to pull data out of this file?

View Replies View Related

Pulling Files From Local Hard Drive

I am using a file type input box in an HTML form. When a file is selected, the local pathname results. Is there a way to run this form online, and access a file on the visitor's PC from the web? What pathname needs to be used?

View Replies View Related

Pulling In Table Graphic Header On Asp Pages

OK I'm just starting out in asp, and the site will be mostly asp, which will be based around a shopping cart.

I would like to pull in a header and/or a footer into all of those pages.

Should I look into an ASP solution, or are there compatible ways such as CCS, or similar.

I only have experience with PHP server side includes, this is what I would like to emulate. I know there is normal SSI, but the pages need to be named .shtml, mine will be .aspx

View Replies View Related

Connecting To DB And Pulling Record Based On Variable

Im having another issue with connecting to a db and pulling only a record matching the one posted im using the following code to connect Code:

View Replies View Related

Multiple Pages Pulling Form A Single Text File

I've got multiple pages on the same server that all have the same drop down
boxes in them. It is a list of all our facilities. Every time there is a
change, I have to change it on every page. They are in the format below. Is
there an easy way to store all that data in a text file so I only have to
update it one place?

<option value="fac 1">fac 1</option>
<option value="fac 2">fac 2</option>
<option value="fac 3">fac 3</option>

View Replies View Related

Dropdown Menu/list Issue Pulling Records From Access Db

I am trying set up a page where the user can view records chosen by the year.
I want to use a dropdown menu/list. Having trouble figuring out the sql behind this.

My db table has about 10 fields in it, one of which is the year this record was created. i want the enduser to be able to enter the page, and first step is to select a year to view. Again, i want this to be chosen using a drop down menu. After clicking I would like the page to show a simple table pulling up all the records from that year.

i know this sounds simple enough, but i cannot find this info/tutorial anywhere.. you guys are my only hope.

View Replies View Related

How Do I Test A "timeout" Error When Pulling An .asp Page?

How do I test a "timeout" error when pulling an .asp page? How do I
raise a "timeout"? How do I "catch" a time out using VBScript with
ASP?

View Replies View Related

Pulling Records From End Of A Database Or Inserting New Records To The Beginning

I'm trying to pull the last 5 records from my database.

<% j=5
rs.MoveLast
While ((j>0) AND (NOT rs_article.BOF))%>
''Execute HTML and data insertion here

<%rs_article.MovePrevious
j=j-1
Wend%>

Everytime I attempt to run this code, I recieve an HTTP 500- Internal Server Error. It tells me no more than that. I know that my connection settings are OK because when I move forward through the database (first five records), the code executes without error. And yes, my Cursor type is Dynamic.

Alternatively, I would also like to know how to add new recordset to the beginning of a database rather than the end.

View Replies View Related

Row Information

I have a database page with a table. I am using ASP and MSSQL on a Windows 2003 machine.

When I get the database information displayed in the table, I have something like the following:
<table>
<tr><td>row1</td><td>row1</td><td>row1</td<td>row1</td>
</tr>
</table>
The table has a total of 167 row that would be divided into five categories.
How can i get the above table to show:
<tr><td>row1</td><td>row2</td><td>row3</td><td>row4</td></tr>

View Replies View Related

Updating The Information

i'm trying to add the data of such client, some of his data have been added already but if i'm going to add or update his data (additional info.) what happened is the data is being added into new row not on the specific client. Code:

View Replies View Related







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