When I try to add to this field, it is limited in how many characters it can store (contrary to what I read). Is there a datatype that doesn't have a limit? I need to store large documents in SQL. Some of these can be 10 pages long.
Again, I know this not the way to go about this, however...
I need to do 2 things (I don't like the idea of doing it, however sometimes you're told what to do, not asked)
1) Write all html content pages to SQL. The problem with doing so is that VarChar can only hold so much. I've tried using the image datatype, however have had no luck. I've did an...
I'm trying to query SQL and pull back how many times a record appears in a table. This record may not appear.
SELECT tblMenuData.MENU_LINK, COUNT(tblIISLog.LOG_FILE) AS Expr1
FROM tblMenuData INNER JOIN
tblIISLog ON tblMenuData.MENU_LINK = tblIISLog.LOG_FILE
GROUP BY tblMenuData.MENU_LINK...
You forgot your equals sign:
Wrong: <td class="dataContent"> <%RS("TelNo")%></td>
Right: <td class="dataContent"> <%=RS("TelNo")%></td>
REBORN
------------------------
Lunchlady Doris:
At last the world is safe. Eh fallout boy?
Ralph:
What's for lunch...
I'm looking for a way to have a window always appear on top, while still being able to use and view the web page in behind without using <body onblur="self.focus()">. The window should be able to be minimized when needed. IE5
REBORN
----------------------
Lunchlady Doris:
At last...
Are you using a database to store the image locations?
REBORN
----------------------
Lunchlady Doris:
At last the world is safe. Eh fallout boy?
Ralph:
What's for lunch tommorrow? - NEXT
Chicken necks?
If you're trying to avoid IIS than I'd suggest switching to a different scripting language :0)
Can you use CDONTS?
REBORN
------------------
Lunchlady Doris:
At last the world is safe. Eh fallout boy?
Ralph:
What's for lunch tommorrow? - NEXT
Chicken necks?
>>How can I get ASP to get the physical name of this image >>to either place in a IMG tag, or to store directly on the >>hard disk?
This is too vague to answer your question. What exactly would you like this string to do? Return the image name? Return the image? In a new window? Are you using...
I would suggest using the form POST method as I'm deadly opposed to the GET & Session methods.
Try this
<form action="ReceivingPage.asp" method="post">
<!-- This will depend of your method of retrieving ID -->
ID <input type="text" name="ID"><br>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.