Dynamic Link Library
I am getting "A dynamic link library (DLL) initialization routine failed" error
in IIS 6.0 on Windows 2003 server.
I have this same code working on WiN-NT.
Does anyone have an idea how to fix this?
I am getting "A dynamic link library (DLL) initialization routine failed" error
in IIS 6.0 on Windows 2003 server.
I have this same code working on WiN-NT.
Does anyone have an idea how to fix this?
I would like to build a dynamic link based upon a value returned from a db
There is data in the db because objRS("Description") returns a value.
something like
Code:
if objRS.EOF then
%>
<a href="/somepage.asp?id="<% objRS("Id") %> "><%response.write(objRS("Description"))%></a>
<%
else
end if
I get
http://localhost/somepage.asp?id=
Nothing else at the end.
What am i doing wrong?
im trying to include a text file in an asp page
<!--#include file="somefile"--> this would normally do but i need to change some file with the file name stored in a db under the field name content, i have the content file name called back to the page in the variable content and i hopped that
<!--#include file="<%=content%>"--> would work
i am aware that the quotes make it a sql bit but i cant store " in the db can i
any ideas?
I have a dynamic table, with a column named "player" in this column is NBA player names - generated from a statistic database. I am hoping to be able to create a link on the players name that will direct the webuser to a profile page like the following:
http://sports.espn.go.com/nba/players/profile?statsId=3282
I am having trouble becasue the stat page is not by the player name but a numbered ID.
I tried using a player search like follows:
<a href=http://www.tsn.ca/nba/player_list.asp?name=<%=(Blair.Fields.Item("IDPlayer").Value)%>&Submit=GO ><%=(Blair.Fields.Item("IDPlayer").Value)%></a></td>
When I do this it only seems to search for the first name.
after the form has been posted I want to keep the querystring the same and not have it reset, i have this:
<form method=post name=main action="index.asp?MEMBER_ID=" <% Request.Querystring("MEMBER_ID") %>
but all i get in the address bar after "post" is this: index.asp?MEMBER_ID= without the member Id. how can i do that?
I have an asp page that returns a table from my database. Only about 6 columns from the table are shown on this page. I have the ID column set up as a dynamic link to a 'details' page, so a user can view the rest of the record data.
My database has been growing rapidly, and now when the page is run i get the error "page cannot be displayed".
I believe this is due to how large my database table is because if i delete records the page works fine, as it did when the system was first running. Right now there are 4600 rows in the database and will be growing.
How do I fix this problem, I cannot get rid of any records.
Oh yea, and if i delete the line of code that contains the link, the page works fine and shows the entire table.
Here is the code for the link:
<A HREF="details.asp?<%= "JOB_NO=" & rsResults.Fields.Item("JOB_NO").Value %>"><%=(rsResults.Fields.Item("JOB_NO").Value)%></A>
i have developed a library in vb6 to import an excel file ftom client to a
sql 2000 table on the server.This object must run at server.
How can i create this object on a web asp page?
Does it run if the oject use Excel library but on the server Excel is not
installed?
Does somebody know a cool library like gd for php which helps me to create images in my script?
View Replies View RelatedI am trying to use the example located here: http://www.asp101.com/articles/jacob/scriptupload.asp
If I have vbscript v5.0 do i still need to include a library inorder to create a new FileUploader object?
i am not sure that this subject can be discussed here. i have many photos. they are stored according to the name of the EVENT and YEAR. i will set up a database (sql or access) to store information of the photo and set up a folder to store the "PHOTOs". and design a web page to show.
My question is how to put the photo on the web page:
i prefer the simplest and effortless method. Once the user takes the photos (5m pixel photo) and upload them and input the event name & year. then it is finished.
any tools can be used? which programming language is most suitable. i noted many web sites have this feature but i don't know how many effort at the back end?
I seem to have a very good library for PHP, XML, Cold Fusion, Flash, JavaScript, and Java..but Im wanting to begin building some helpful references for ASP.net. I got one book called "Designing ASP.net Applications" from Microsoft, but it, sadly, wasnt very good for someone like me thats starting out.
Can we use this thread to possibly suggest good books on ASP.net, VB.net, C#, etc that have helped you, and perhaps others can benefit from it, as well as me?
Does anybody has a Sample of books library systemin ASP? I looked for in aspfaq.com, asp101.com, but untill now I could find anything else.
View Replies View Relatedi thought some of you might be interested because as far as i know there arent any Ajax Libraries for classic ASP...
i have developed a free Ajax Library called ajaxed. With this you are able to call server side procedures directly from client side ...
My company is finally making the move to program in ASP.NET for our web application stuff. We need to purchase a suite of components. Can anyne recommend a very good component library. We are looking for things like GRID, CHARTS, VALIDATION TOOLS, etc.
View Replies View RelatedWe've had a recurring problem where all of a sudden we get a DBMSSOCN General Network Error on any page that connects to SQL Server. Then we have to reboot the server and everything works fine again, for a few more hours and then we have the same problem. Someone suggested adding ";Network Library=DBMSSOCN" to our connection strings. I've tried to figure out exactly what this does and why not having it would be a problem.
View Replies View RelatedI found a posting for below error in the forum but could not found any solutions.
I am also facing the same error, though most of my ASP pages are working fine
I get this error on a page where in I am trying to create an excel file out of the resultset fetched on the page. Page has a button, on click of which i get this error:
<LI>Error Type:
Server object, ASP 0177 (0x80029C4A)
Error loading type library/DLL.
/ami/includes/lib_offload_to_Excel.asp, line 86Has it something to do with the permissions of the logged in user?
conaito VoIP ActiveX library for developers of VoIP audio applications,
such as voice chat, conference, VoIP, providing real-time low latency
multi-client audio streaming over UDP/IP networks. Includes efficient
components for sound recording, playback, encoding, decoding, mixing,
resampling, reading, and writing wave files, mixer volume controls
access.
Provides UDP/IP server and client components for peer-to-peer,
multi-user, and broadcast audio communications. Really easy to use!
Working with Firewall and NAT! conaito VoIP SDK is the best way to add
voice conference and text conference into your application and web
pages. conaito VoIP SDK includes voip activex, voip ocx, voip com, voip
dll, voip lib and voip cab, so you can use the one you like the most.
I code that creates a calendar for each month and then it displays events from that month that are stored in a db. I need to loop through my recordset and display all the events, but I can't quite figure out how to do it. I am thinking I need to do an array. But I am not really sure.... any ideas. Here is where you can view the calendar. Code:
View Replies View RelatedOk, I have a Javascript ASP and in it I have a dynamic repeating table with certain attributes to people. If one of these attributes is old or invalid, i want to change the color of the text (and maybe make it flash, blink, change size, something) so that it's easy to read.
View Replies View RelatedDoes anyone know how to hide and show a link depending on the level of the user. Like I want the link to show if the person loging in is an admin, but if the person is a user than I dont want the link to show?
View Replies View RelatedHow to get a link / url in a var ? This is what I need to do :
newmsg = " <a href="http://www.my-url"?pa=<%=userid%>> Click here </a> "
Clicking url that points to an exe pops up Open/Save dialog box. But I want
only the Open option to be enabled
How display a link like a plain text (not underlined) with css code.
View Replies View RelatedHaving a problem getting my asp url to work. Im trying to pass a var and some of them have the & in them. This is breaking my url since it looks for another var with the &. If i put the %26 instead of the & manually it works fine. How do I get that to encode that on the link ?
I know the problem is the data that is in the heading field has & in them. I can not fix that part. Is there a way to force the & in the url to go to %26 ? Code:
To secure files on a site with authentication we have put the
attachments in a folder outside the IIS web site like this:
D:Documents<ItemID>filename.doc
where ItemID is a number which we use to check permissions inside our
application.
In order to download the file from the site we have made a binary
reader component (we could probably use SAFileUp or something instead,
but this works) to send the file through an ASP-file:
http://mysite/Docs/ShowDoc.asp?ID=<ItemID>
This works well.
So to my problem:
If I right click the link to save the file on my local computer (Save
target as), it will save the file properly, but the filename in the
Save As-dialog is ShowDoc.asp. I want it to be filename.doc instead.
Is it possible?
I've heard that on a Apache web server you can write the link like
this:
http://mysite/something/filename.doc?ID=<ItemID>
but then the server knows that it's
http://mysite/Docs/ShowDoc.asp?ID=<ItemID> it should load. If this is
possible in IIS, the Save As-problem will be solved.
I am using this code
<table border="1">
<%
Do While Not rstSimple.EOF
%>
<tr>
<td><%= rstSimple.Fields("username").Value %></td>
<td><%= rstSimple.Fields("password").Value %></td>
<td><%= rstSimple.Fields("email").Value %></td>
</tr>
<%
rstSimple.MoveNext
Loop
%>
</table>
How can I make the email field a hyper link?
I have the following link:
<A HREF=""Schedule.asp?JobNumber=" & RS("JobNumber") & "&PONumber=" &
RS("PONumber") & """>" & RS("JobNumber") ONCLICK= popup() & "</a>
I want the link to reference a function in the <Script> tag as
follows:
<script>
function popup() {
window.open( "Schedule.asp" , ""
,"top=40,left=40,width=200,height=100" ) ;
}
</script>
I am not sure where to place the ONCLICK code in the hyperlink as this
link is written out via response.write......Its all the " " & ' ' that
get me ...
I have a database of literature and I've created a search page that pulls up the records matching the search criteria. However, I'd like to create a link to the article in pdf format, if it exists. I have a field in the database that contains the file name (and path), but not all records have a corresponding pdf file.
Code:
<td><a href="<%=(rs.Fields.Item("Article").Value)%>"><%=(rs.Fields.Item("Title").Value)%></a></td>
How do I check whether there is a corresponding pdf file before displaying the title with a link?
I would like to have a link that when clicked, sends info to an ASP page to process, but does not submit the entire page. This way, the user will
click on a link and will not be taken to another page, but precessing will occur.
This is mainly for a 'Rating' Application.
Amazon.com does this and I want to know how they do it. Here is the link to the amazon page (you may need to be logged in)
http://www.amazon.com/exec/obidos/t...5480771-6490552.
(1)I posted this in general but didnt get anywhere. Then I recalled seeing something recently on the web on an ASP site but cannot recall where.
(2)I have a list of pdf files avaiable for the user to view. When they click the pdf link, the pdf file opens. How can I make the link be a 'save' link? ie, when they click the link, windows treats it as a file to 'save as' etc...
What I vaguely recall on the ASP site was: 'How to hide the path of a download file by using an ASP redirect page'. I was wondering if anyone knows this method, and if they do, would it solve my problem in (2)
I would like to put a picture on may page and I would like to use this picture as a button to execute an sql query, so when you clik on the picture you will hace displayed in the next page the product in the data base and other info like price for example.
I have this code to access the data base but I do not know how to use a picture s a buton to use it. Code:
anyone in here got an idea on how i could transfer a value of a form text to another asp page just by using <a href="">
View Replies View RelatedMy hidden field is
Code:
<input type=hidden name="action" value="login">
<input type=hidden name="ret_page" value="<% =request("ret_page") %>">
and my link is
<A href='register.asp?ret_page=<% =request("ret_page") %>
But the ret_page appears as /vfolder/Content.asp?ContentID=700.
How would I get rid of the /vfolder/ and just have the content.asp?contentID=700 alone.