Content Not Being Added
I'm a designer by trade but the company I work for does asp via the built in Dreamweaver stuff. I've ran into this problem before and now twice this week. I can't remember how ai fixed it first time and actually think it was just down to luck rather than knowledge.
I can retrieve the data out of the database table and delete it but when I try to add it from the admin form or modify it (i'm passing the variale fine as its fills the form in with all the relevant values) the page refreshes without adding the content or modifying the content. As I say I'm not writing the code but generating it via dreamweaver so don't really understand whats wrong.
View Replies
ADVERTISEMENT
A few months ago, when I did an update from the windows update, a few of the 'necessary' updates had this like:
microsoft net framework, MSXML, iis, asp. What are they and are they really necessary? There are a few more weird things that I have never seen previously, and if they really are not necessary, I would really like to remove them, if possible.
View Replies
View Related
I have a site and im trying to make a create account page for users to create an account. Unfortunately after getting everything working right i find out that for some reason the code is not adding the users to the database, i have double and even triple checked my sql connection string im at a complete and total loss Code:
View Replies
View Related
I have a web page that adds records to multiple tables. I want to be able to get the new identity of a new record that was just added to the table. If for some reason, it didn't add, I want an error message to show up.
Here's the code in stored procedure for getting the new product id after the record was added. Code:
View Replies
View Related
How can I make sure that it adds all of the records to the table before I make Added = "True" It is strange, but sometimes, it won't add a record at all and then proceed to Added="True" How can I make sure that rs.Update was successful? Code:
View Replies
View Related
I want to record the date and time that a record is created. I have two fields, dateSubmitted, timeSubmitted, of type short date and short time respectively. How do I store the current date and time in these variables? I have tried using the following but it doesn't work:
objRS("DateSubmitted") = date() 'add date to database
objRS("TimeSubmitted") = time() 'add time to database
View Replies
View Related
I am adding simple records to a fairly simple access database with the following code
rsEntry.Fields("Player1") = ShortName(Player1)
rsEntry.Fields("Player2") = ShortName(Player2)
'Write the updated recordset to the database
rsEntry.Update
rsEntry.Close
adoCon.Close
Set rsEntry = Nothing
Set adoCon = Nothing
How can I SIMPLY :-) prevent duplicate records from being added? I know I can set the index property on the fields but that mean handling the errors - not sure how to do this.
OR I could write the code to seach the DB before update - which may be the only way :-(
Is there a simple way?
View Replies
View Related
Using ASP I'd like to modify a string that contains HTML. I need to modify the content (the bit that the users see) but not the stuff in the tags. For example, if I had the following string Code:
View Replies
View Related
I am performing a post from one classic ASP page to another in order to get the value of a string passed between the two pages. I have a client script variable declared to take the value of the value being received in the page i.e. var x = '<%=varName%>'. Unfortunately, ASP seems to be adding a carriage return to the value of varName when it
is passed in i.e. it expands the stated line to var x = 'FieldContents';. I.e. somewhere a carriage return has been added. The string gets passed in OK if I use the Get mechanism. Don't know why this carriage return is being added when using Post mechanism. Anybody seen this before? Is it a bug in ASP ?
View Replies
View Related
I have a funtion that is supposed to add items in my shopping basket.
It's an array, and each time the user is adding an item, it adds the item to the array with its quantity and size.
I've never used arrays before, read about it, etc...
The only problem is that when it adds the new product, it's not keeping the ones which were there before :-(.
I have used REDIM PRESERVE. So can't find out what is wrong.
Below are the funtions that i use for testing and the coding where I implement them. Code:
View Replies
View Related
I have started doing SEO for a website and I'm trying to get a feel for how the website is set up.I dont know which file stores the content....
In the asp file page there is a string of code that reads:
<%Call writeContent(2,1)%>
I believe it is what is telling the server to find the article, but I dont know where it is.Does anyone know what else to look for?
View Replies
View Related
I am having to make sites accessible where images are dynamically generated.
'Display the graphical hit count
Response.Write("<img src=""counter_images/")
Response.Write(Mid(lngVisitorNumber, intWriteDigitLoopCount, 1) & ".gif""")
Response.Write("alt=""" & Mid(lngVisitorNumber, intWriteDigitLoopCount, 1) & """>")
How do I include the width and height attributes in this code?
View Replies
View Related
What is "active content"? My ASP page just returns HTML....
I have a page with an .htm extension that has a form whose action
is an ASP page which generates a report after updating a database
with the form data.
Under Windowx XP SP2 the IE6 "Information Bar" has the message:
"To help protect your security, Internet Explorer has restricted this
file from showing active content that could access your computer."
View Replies
View Related
I would like to have a PRINT button on my page, that redirects to another page which is more printer friendly.
I am pulling the content of a database (msAccess) into the initial page, and want that content to carry accross..
Here is an example of the page http://www.australie-voyages.com/en...-tours.asp?id=8
View Replies
View Related
can someone help me. I'm writing an onlineshop in asp and for the shopping cart
i use an array. If someone wants to delete some articles from the cart, i have to
delete them from the array. How i delete only one article (on line) from the array.
View Replies
View Related
i am building some web page with template engine and i run on one problem: i want to import a content of some file and then use it in asp script so the solutions are this:
1: Create file system object and use ReadAll to read the content but there is a problem because it dosent render the importet file i get just the asp code
2: Create XML object and load the file into the xml but here is another problem this proccess takes quite a lot of time so it will be very slow for the web site especially that i want to import more the one file...
3: Create file system object and user ReadAll to read the content and then use eval(reasponseString) to execute this code... but i dont belive to much in this solution i dont know why but it seems to me it's not right.....
View Replies
View Related
If you needed to have a side bar, that had room for 2 or 3 graphical ads, and you had say 8 ads to pick from, and you wanted each page to just randomly load ads but never put the same 2 or3 ads on the same page...
View Replies
View Related
I've been looking at content negotiation for serving up pages as xhtml/xml or text/html based on the user's browser and using PHP you use this:
PHP Code:
function fix_code($buffer) {
return (str_replace(" />", ">", $buffer));
}
ob_start("fix_code");
to remove all the / end of tags in your text/html code. Is there an ASP equivalent to this?
View Replies
View Related
I'm writing a site scraper (bot, etc.) that needs to log into a site (i have the username and password), then redirect to a particular page and then pull that content into a variable so I can manipulate it.
I'm using ASPHttp to try to pull this off. However, I CANNOT get by the login. According to ASPHttp this should be possible, but I cannot make it happen. I would not imagine this would be too hard to do. Perhaps ASPHttp is not the right tool.
View Replies
View Related
After a user selects the 'answer' hyperlink, the answer will be pulled from the database and displayed.
Then i would like another link once selected to remove the displayed answer from the screen. It is important that the answer is not permanently deleted from the database.
I would like to do this for a series of questions.How can i do this?
View Replies
View Related
how to import the rtf format content to word file.
View Replies
View Related
I'm using the Server.Execute method to include a static page inside a
dynamic database call. This static page is not a valid HTML page (i.e.
lacking <body>,<head>, etc. elements), but I'm pulling it into the dynamic
page just to give the content an upgrade in presentation, including images.
The problem is that there is no way to have relative URLs in the content
page, so all the image src's are wrong. Is there a better way to include
static content like this, or a way to alter the contents on the static page
prior to running Server.Execute (I could parse the file via the
FileSystemObject, but I'm hoping not to do that)?
View Replies
View Related
I am currently taking a lot of web form information and compiling it into a word document for users to download; however, I want to be able to embed any attachments
that they have inside the word document. The attachments are coming from a database and the office suite does not reside on
the server. Does anyone know if it is possible to create a word document with embedded attachments for download.
View Replies
View Related
I want my Default.asp page to view different content in a <TD> according the request.
I've been understand that the best method to do it is by using the method GET, Example:
..MyHost../default.asp?page=news
And I have no idea how to write the code:
View Replies
View Related
On the website i'm working on, i'm using a database filled
with pdf files. Users can download these files from the website.
When you click the link of a file, you see a popup screen that asks you
wether you want to download the file or open it. My problem is that it
is empty behind the content type. The download works fine, and i have
the content type stored in my database. What do i do wrong here??
If Not rs.EOF Then
Response.AddHeader "content-disposition", "attachment; filename=""" & titleDownload & """"
Response.ContentType = rs("Content Type")
Response.BinaryWrite rs("File Data")
End If
View Replies
View Related
can anybody provide good links of content management services in asp.....
If I want to develop CMS for a website then how should I go for it???
View Replies
View Related
I am looking to pull the contents of a folder and display them. I have been able to do this from the code below but only from a local folder. I would love to be able to get the contents from a web folder. Code:
View Replies
View Related
My pages are not refreshing content. Sometimes they refresh after a minute or two.
I've set response.expires=0
response.expires absolute=now()
and I have response.expires = immediately in iis6
What else can i do? I also have the dot net framework installed and all service packs installed windows 2003
View Replies
View Related
I am looking for some good code that will allow me to have expandable/calapsible content, and will provide paging for a site i am developing.
View Replies
View Related
How to bring the file content into Textarea box
View Replies
View Related
I am trying to read webpage content into a string variable to be able to search it for a pattern that I want to be able to display on another ASP page.Is there any obvious method to do this with VB script?It would be something compatible with following PHP script:
<? $fd = fread(fopen("http://www.vedur.is/vedrid/stutt_spa.html?", "r"), 100000); if ($fd) { /* $start = strpos($fd, "<unique HTML tag>">"); */$start = strpos($fd, "Veðurhorfur á landinu til kl. 18 á morgun:"); /* $finish = strpos($fd, "<unique, sem næst lokun HTML tags>"); */$finish = strpos($fd, "Næsta veðurspá er væntanleg"); $length = $finish - $start; $code = substr($fd, $start, $length); echo $code;}?>
View Replies
View Related
I can't get a file download working on IE5.It works on IE6 and I couldn't find a solution on google. Here's the code:
Response.ContentType = "application/download"
Response.AddHeader "Content-Disposition", "attachment;
filename=""ex.html"";"
What's the correct way to force a file download?
View Replies
View Related
I am having problem of content expiration it expires immidiately.Real problem is I am replacing some images on mouse over. On every mouse over its downloading images from server that takes time to display, and second thing is its working fine with same aaplication on server1 but when I putting on server2 its not.I have content expiration checked / unchecked in IIS but no luck.
View Replies
View Related