The codes below have some prob.It works well when the link as shown with the highlighted green is click as it passes the id to file.asp to show the pic in a new window.I now want it to show it in the same window itself.I mean i dun have to click the link to show the picture.It just will show the pic as shown in highlighted red.But all it comes out is the binary form. Code:
If you go to www.AstraAccounts.co.uk and click on any of the nav panel folders on the left you may find that the images don't appear (white box with red cross) for the tree-view items within these folders. Yet if you right-click on any of these non-displaying images and go Show Picture then these pics show without probs and will work for the rest of the session.It only seems to be happening on IE 6 and intermittently at that. Is it because I use ASP pages, although this particular nav bar is a standard html page?Is it a recognised problem in IE 6? Is there a way round it, ie via HTML code or a Microsoft patch?
I have a set of code for displaying information from the database. However now i can only view text with no pics... what can i add in order to see pics together with the text and what data type should i put for the pics in the database? Code:
made a page which should display one pic after another automatically as tho to say its generated from the database... not working tho i have included some sample code as well in a txt file.
Basically I have created a small ASP site that allows a user to upload their own pics via ASPupload so that they can be used on their site. I use a very simple form with a INPUT file box to allow them to browse, select and upload the picture. I then use ASPupload to save the file, get the file params and then store these details in an Access DB as I can page through data far more easily using a DB over a FileSysObj.
This works fine, but a number of users that use this site want to be able to upload a large number of pics en masse. At this point, my knowledge of problems to do with this are as follows:
a) ASPupload together with the trigger-happy ISP that I'm using means that a total upload size at one time is really only about 800KB - 900KB at best before the ISP triggers their script time out. Code:
how to extract a pic from ms access database.I used simple codes found online but it only gives me the binary codes not the pic itself.Wondering if anyone could help.I have already put the picture in the database.Now is extracting it.
I run my applications perfectly, can make changes to my database, but I cannot upload Documents or Pictures Etc.Etc.I was able to with my Windows ME OS. I now run Windows 2000.
Ok my boss wants to know if there is a way to display an unknown # of pics from folder onto a web page ASP using VBScript or JavaScript... doesn't really matter.
You don't know the names of the pics or how many are in the folder just that you want to display all the pictures in the folder...
I am in the middle of writing a system with 8 different entry form screens, at the end of the 8 forms (10 entry fields on each form, with pull down scores of 0 to 10) I want to do the following :
total up the results for each form/screen sort the results display the top 3, with additional text, and then add to the database
Now, I've got the 8 entry screens working fine, with verification, so I have the 80 available numbers. I have added these up to create 8 totals. Where I'm stuck now is the best way to sort these and display the results I require. I could do it with a messy, nested "if one > two then if one > three" etc etc approach, but wondered if anyone had a less stressful method to consider?
could some one tell me how to display the date in an html form only up to 30 if April, June, September and November is selected, and 31 for all the rest?or even better, 28, 29 for February according to leap year or not?
i am working on image display program like displaying thumbnail. i want to display 2 records in one row. after every 2 record displayed table row must change and make new row.
I need to be able to display a row and check to see if there are any other rows with a parent_id value of the original row and display them below. table is:
i have my code like this which displays the college name and url for college website. say for example there is college whose SI_Web_Site is like this www.bgsu.edu/ in table. when i display it on web page and move my cursor on it . can someone tell me where the http:///# are coming from and thats the reason why it doesnt open up the college website.
I'm trying to display the value of <Timestamp> to a page. I'm having trouble understanding XML DOM and I can't find a simple example of something like this. If anybody can show me right quick how to display it to the page.
I would like to select from drop down menu and depending on the selection display 1-3 radio buttons next to the selection box. I have tried some different code and nothing is working. What is the best way to do this?
I'm trying to write a piece of ASP that will allow me to display only one element of a XML file. I am new to XML and wanted to find out what I am doing wrong. I think it may be to do with the nodes ? When this is currently run it comes up with the error "Overflow" ('800a0006').
I'd like to know how to display the current URL on the web page as a footer. This seems to be a fairly simple task, but everything i've found on the internet either doesn't work for some reason, or is asp.net specific....
I'm the project manager on a new calendar site wide for our school. The calendar is in asp and has been implemented on the site. I've gotten two complaints. One isn't my fault (database didn't have enough info, I just converted the database, I never entered the events) and two they would like to click to view the events off the front page.
I've looked over the last 2000 posts for info on incorportating an RSS feed on a web page using ASP to control the display - especially which elements are shown and how many items are shown. I found a free ASP script that I hoped would do the job >>>
I've been creating a page in asp which displays records from an access database. I have limited the number of records displayed to 5 per page. If there are more than 5 records then the user can click next to view the next 5 and so on.
My Image field in the database has a data type of "text" and then i put the path to the image. However when i run my asp page it displays the path as text and im not so sure were im going wrong.
Here is a section of the code used to display the recordset.
For intRec=1 To rs.PageSize If Not rs.EOF Then Response.Write "<tr>" For Each fldF in rs.Fields Response.Write "<td>" & fldF.Value & "</td>" Next Response.Write "<tr>" rs.MoveNext End If Next Response.Write "</tbody></table><p>"
I want to display message box with ok,cancel buttons. If i click on Ok then i want to execute some ASP functionality,how can i manage both,If i gave runat=server then the messagebox will not displayed.If i use runat=client,then ASP function was not worked.
Where Fdate is From Date TDate is To Date NoDays is number of days.
We use this to record holidays for our employees.
I would like to write a SQL query which will display all the records where Fdate or Tdate are within the current month. Not very good at writing SQL hence need some help.
If that was the data in the my table and running this query I would expect it include all the three records when searching for month of "May" as all three records have atleast one day which falls in the month of May.
I'm having a problem in displaying a selected option from the drop down list in words. But after I selected an option, nothing is being displayed, I think the value can't be passed at all. Please let me know how to fix it.
<td align=center width=20%>Fruit: <select name=""FruitName"> <% " If not myRS.eof Then while not myRS.eof %> <option value="<%=myRS.fields("ID")%>"<%If FId = myRS.fields("ID") Then response.write "selected"%>><%=myRS.fields("FName")%></option> <% myRS.MoveNext wend %> </select>
<p>The fruit you have selected is <%=FruitName%></p>
there is a JavaScript/ASP function that that will check for new Private Message (PM) Inbox. New PM will be referred as "NEW" in the status field in the database and "READ" for all the old PM.hen there is a new PM, a popup will appear in my page. But I have to press the REFRESH BUTTON before I get the popup ALERT! Can this be done in AJAX? (Alert me without refreshing the page?)