all groups > inetserver asp general > november 2005 > threads for november 22 - 28, 2005
Filter by week: 1 2 3 4 5
Datagrid for ASP?
Posted by Richard Speiss at 11/28/2005 7:48:00 PM
I have a website that uses a database and ASP to create the pages from this
database.
Currently I have an application written that connects to the remote database
and allows me to add/change/delete records from the various tables.
I want to get rid of my stand alone application and integra... more >>
Enterprise Manager Port?
Posted by Bill at 11/28/2005 1:13:43 PM
I'm trying to use Enterprise Manager to manage my remote SQL database, but I can't seem
to get a connection. I think my cable ISP Comcast may be blocking the port EM uses.
What port does Enterprise Manager use to communicate with SQL?
Thanks!
... more >>
Microsoft VBScript runtime error '800a01c9'
Posted by PaulieS at 11/28/2005 1:08:23 PM
Hi all.
Am migrating a customer from IIS5 on W2K server to IIS6 on W2K3.
Zipped all the websites and unzipped them to the identical locations
on new server. Used IISMT to migrate metabase.
Got this error when I tried to run a very basic page... code:
<%@ LANGUAGE=vbscript %>
<%
response... more >>
asp post
Posted by Microsoft at 11/28/2005 12:45:30 PM
Hello
I need to do a post using asp
I've an html form with some fields, I have to normally post them clicking a
submit button to an asp page; this page have to programmatically repost
these fields and other constants to another page
I do this beacuse I don't want the web user to see the... more >>
Double click event
Posted by Jack at 11/28/2005 12:12:13 PM
I have a active server page where records are displayed from a query. The
display right now is read only. However, with text box this display can also
be edited. The first column shows category while the second category shows
category total sales. I would like to double click on category field... more >>
Losing Session Info
Posted by BubbaThree at 11/28/2005 9:31:20 AM
I started having these problems last Monday, I believe but I am not sure that
our
corporate office deployed some security patches???
First of all, when a go to my Web Application (written in ASP.NET 7.1.3088
on .Net framework 1.1.4322 sp1) the IE address bar has
http://localhost/Projects/... more >>
save remote image to my server
Posted by Tim at 11/28/2005 3:50:42 AM
Hi all,
I would like to reference a remote image, such as
http://www.mysite.com/pic.jpg and save it to a local folder such as
c:\pics
Can this be done with ASP?
I have played with many image manipulation components and none of them
perform this fuction.
Thanks in advance
Tim
... more >>
"Valiadte Document" button
Posted by Ant at 11/27/2005 6:56:01 PM
Hi,
I'm wondering if anybody can tell me what the Validate document button is
used for & how to use it. When I deliberately put some tag in that shouldn't
be there, (such as an extra body tag) & use this buton, nothing happens.
Can anybody tell me what it's used for?
Many thanks for your... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
download mp3 - how to?
Posted by shank at 11/27/2005 3:32:02 PM
If this subject is not appropriate for this forum - please advise the
correct forum.
I'd like to build a site and sell MP3 files users can download. Obviously,
to protect myself I can't have simple links like:
www.mydomain/mp3/jinglebells.mp3 or users would rob me blind. So how do I
handl... more >>
how to send binary files and protect their file names
Posted by Tomas PAJER at 11/26/2005 7:25:03 AM
I have many office files saved in sql server. The system sends them by one
web page: RequestFile.asp. So every file has the same name requestFile.asp.
How can i change requested URL on the server from
www.domain.com/requestFile.asp to www.domain.com/someFileName.doc????
I am able to rise ... more >>
pass parameters to included files in asp
Posted by jacobyv NO[at]SPAM sis.unibe.ch at 11/26/2005 3:54:52 AM
hi
i created survey.asp which displays the survey passed through the name
paramter in the url.
it works fine if i open the page like this.
http://url/survey.asp?name=survey1
but now i would like to include survey.asp in a different asp file,
let's call it main.asp, and display several surv... more >>
How to get the web site physical path
Posted by Jaime Stuardo at 11/26/2005 12:00:00 AM
Hi all...
How can I get the physical path of a web site from an EXE application? The
Web Site is on the same server as the application.
Thanks in advance
Jaime
... more >>
How to start with ASP.net?
Posted by Adrian at 11/26/2005 12:00:00 AM
Hi,
I have a Hello World app written in VS2003 C# it runs fine on my local
PC using IIS5 XP Pro Dotnet1.1 but when I up load it to my site I get the
following:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Err... more >>
An ActiveX control might be unsafe to interact with other parts of the page. Do you want to allow this interaction?
Posted by fniles at 11/25/2005 11:45:26 AM
I have an ActiveX control in my web page that I tried to access using
intranet.
I have implemented IObjectSafety in the ActiveX control, and when I created
the CAB file using VB Pakage and Deployment Wizard, under "Safety Settings"
I selected "Yes" for "Safe for Scripting" and "Yes" for "Safe... more >>
Authentication using NT groups:
Posted by iwrp at 11/25/2005 5:55:05 AM
Hi tehere,
I am trying to authenticate users by what NT groups they are in, is there
any easy ways ofdoing this in ASP classic not .NET
thanks... more >>
Random recordsets
Posted by polilop at 11/25/2005 12:00:00 AM
I have a query to a database that returns some recordsets. What i need to do
is pick 5 random recordsets from those retreved from the query???
... more >>
Display Chinese character, work in one server but not in another
Posted by Jason Chan at 11/24/2005 10:21:04 PM
I have an asp to display data in database, the data is in big5 encoding
(chinese characters)
I haven't specify the codepage in the asp and placed the file into 2 machine.
When I browse the file in NT machine the chinese characters can display
correctly, but doesn't for the page in my winxp m... more >>
Error 500
Posted by Ant at 11/24/2005 8:04:45 PM
Hello,
I'm receiving an error 500 when trying to dsiplay an ASP page with IIS. Does
anybody know what this message means.
Any help would be gratefully appreciated
Thank you
Ant... more >>
Hiding blank record data
Posted by james.shearer NO[at]SPAM gmail.com at 11/24/2005 1:02:08 PM
I want to display the contents of a field with a label if there is data
in that field. If there isn't then I don't want the label to appear.
I tried this:
<%If Venueinfo("email") = "" Then
Else%>Email: <a href="mailto:<%=Venueinfo("email")%>">Click to
email</a><br><%End If%>
But it doe... more >>
Hiding blank record data
Posted by james.shearer NO[at]SPAM gmail.com at 11/24/2005 1:00:56 PM
I want to display the contents of a field with a label if there is data
in that field. If there isn't then I don't want the label to appear.
I tried this:
<%If Venueinfo("email") = "" Then
Else%>Email: <a href="mailto:<%=Venueinfo("email")%>">Click to
email</a><br><%End If%>
But it doe... more >>
What is wrong with this???
Posted by jaloplo NO[at]SPAM gmail.com at 11/24/2005 2:02:43 AM
Hi,
I have an application that was moved to other server. Before the
changed, It works properly, but now, there is an error when it creates
a Crystal Report.
I would like to know if this code is correct or has something wrong or
not correct at all.
'--------------------------------------... more >>
Trapping Single Quotation Mark
Posted by M P at 11/24/2005 12:00:00 AM
Hi!
I am looking for a way that I can trap the single quotation mark. If an
encoder uses single quotation mark on a textbox field, it always give me an
error because I use single quotes on the SQL statement. Can you help trap
this character not to produce error?
Me
... more >>
How to write html tags onto a page ????
Posted by polilop at 11/24/2005 12:00:00 AM
OK i know it sounds little bit wierd but here is what i have to do. I have a
database in which i store questions and answers, but the questions are about
HTML, Javascript, ASP...... So i store into my database a question like
'How do you make a letter/word in HTML bold?
Now i put the answer... more >>
iis with windows xp?
Posted by Kevin at 11/23/2005 9:00:47 PM
Hi,
i intend to buy a computer with windows xp.
Is there a webserver included (like iis) and if not, how to get one?
Thanks
Kevin
... more >>
Should I make my ASP admin pages expire? if so, how do I do this?
Posted by Laphan at 11/23/2005 8:47:48 PM
Hi All
I've created an admin side for my ASP site and I use session vars to provide
page security.
Just as a bit of advice, I want to know if I should expire each admin page
so that others can't bring them up. I know the session var check will
bounce them back to the login page, but I'd... more >>
ASP pages don't work on W2003 Server
Posted by Ian at 11/23/2005 7:18:16 PM
I have a Windows 2003 server running IIS6.0
It has a number of ASP.NET sites running on it.
I'm trying to instal a legacy classic ASP site, but trying to access and
pages with the .asp suffix produces a "The system cannot find the file
specified." page, or when run locally a 404.
Interest... more >>
Session in ASP for two virtual directories
Posted by tractng NO[at]SPAM gmail.com at 11/23/2005 12:39:22 PM
Guys,
Can a session be good for two different virtual directories under the
same site? They are for internal use only.
Would the session be carried from the virtual directories?
For example:
Site one is : http://fs1/review1/
Site two is: http://fs1/review2/
Thanks in advance,... more >>
recursive function
Posted by Microsoft at 11/23/2005 12:00:00 AM
I've a table of users like this
id_user id_ref flg_enabled
1 0 1
2 1 1
3 1 0
4 2 1
id_user 1 created id_user 2 and 3
id_user 2 created id_user 4
This rule can by infinite
I need a recurs... more >>
email hyperlink on ASP page
Posted by Paul Proefrock at 11/22/2005 10:04:53 PM
I am generating an asp page with information on our organizations annual
calendar. One of the items presented is the contacts email address. It does
appear as a hyperlink but when you click on it, it generates an error page
that says "This Action is not allowed"
How do I get it to generate ... more >>
Access denied URGENT!!!!!!!!!!!
Posted by Renjith at 11/22/2005 9:16:03 PM
I have a list box , multilist , where i selected some 120 items.
if i select more than 120 item on submitting the page it will show a
javascript error called access denied or syntax error. the page is not
loading at all.
if i select only 120 or less than item no problem.
why is the eror.
... more >>
ASP login form connecting SQL
Posted by tractng NO[at]SPAM gmail.com at 11/22/2005 3:37:03 PM
Guys,
I really need help with this. I need to creat a login page for the
website. Its an existing site that connects to SQL 7 with a local
user in the database called 'maya'. It was written by a former
employee
I want to be able to creat a table(called user) that has username &
pas... more >>
vbscript Event parameters
Posted by jose.mendez22 NO[at]SPAM gmail.com at 11/22/2005 2:07:13 PM
I have created a label ctl and an OnClick event handler which works
correclty. However I would also like to pass the event two parameters
so I cand do further logic. Does anyone know the syntax to pass the
event parameters?
<SCRIPT LANGUAGE="vbscript" FOR="lnkEdit" EVENT="OnClick">
... more >>
CDO Message help
Posted by Shamaila at 11/22/2005 1:50:39 PM
Hi I am using a similar code to send a cdo messag ei was wondering if
the below code will function w/o setting the
cdoconfig.fields
..Item(sch &"sendusing")=2
..Item(sch &"smtpserver")=<enter_mail.server_here>
..update
<%
Set cdoConfig = CreateObject("CDO.Configuration")
Set cdoMessa... more >>
format date in asp
Posted by news at 11/22/2005 9:15:48 AM
Hello,
Can someone help me with this request?
1. Data in my access database have the format "9/10 2005"
2. When I show all dates within an asp page I get the following format
"9/10/2005"
The format I want to show in my asp page is the following format "9/10-05"
!!!
Please help!!
// Ken... more >>
|