Click here to Skip to main content
16,007,472 members
Home / Discussions / Database
   

Database

 
QuestionWhy ASP.NET webapplications/webservies are not running/working on my system? Pin
amittinku29-Dec-04 20:10
amittinku29-Dec-04 20:10 
GeneralInconsistent, but there should be an explanation Pin
mysorian29-Dec-04 11:11
professionalmysorian29-Dec-04 11:11 
GeneralRe: Inconsistent, but there should be an explanation Pin
Rob Graham30-Dec-04 14:14
Rob Graham30-Dec-04 14:14 
GeneralRe: Inconsistent, but there should be an explanation Pin
mysorian30-Dec-04 18:32
professionalmysorian30-Dec-04 18:32 
GeneralCase-Sensitive Pin
Ahmed Galal29-Dec-04 0:13
Ahmed Galal29-Dec-04 0:13 
GeneralRe: Case-Sensitive Pin
Colin Angus Mackay29-Dec-04 1:40
Colin Angus Mackay29-Dec-04 1:40 
GeneralRe: Case-Sensitive Pin
Ahmed Galal29-Dec-04 2:33
Ahmed Galal29-Dec-04 2:33 
Generalasp ado problem. Pin
RomanD28-Dec-04 16:02
RomanD28-Dec-04 16:02 
Every time I run the code below, it tells me "No update permissions!"

<html>
<body>

<h2>Update Record</h2>
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.mapPath("chem.mdb"))

cid=Request.Form("sh*t")
response.write(Request.Form("test1"))
jon = 1
response.write(jon)

if Request.form("test1")<>"" then

sql="UPDATE NEWS SET "
sql=sql & "DATE='" & now() & "',"
sql=sql & "CONTENT='" & Request.Form("test1") & "'"
sql=sql & " WHERE ID='" & jon & "'"
on error resume next
conn.Execute sql, Recordsaffected
if err<>0 then
response.write("No update permissions!")
else
response.write("Record " & cid & " was updated!")
end if
end if
conn.close
%>

</body>
</html>
GeneralRe: asp ado problem. Pin
Colin Angus Mackay29-Dec-04 1:33
Colin Angus Mackay29-Dec-04 1:33 
GeneralRe: asp ado problem. Pin
mysorian29-Dec-04 10:57
professionalmysorian29-Dec-04 10:57 
GeneralRe: asp ado problem. Pin
mysorian29-Dec-04 10:57
professionalmysorian29-Dec-04 10:57 
GeneralRe: asp ado problem. Pin
RomanD29-Dec-04 12:37
RomanD29-Dec-04 12:37 
GeneralRe: asp ado problem. Pin
Mike Dimmick30-Dec-04 3:58
Mike Dimmick30-Dec-04 3:58 
Generalsql exec Pin
SudeepPradhan28-Dec-04 13:59
SudeepPradhan28-Dec-04 13:59 
GeneralRe: sql exec Pin
Javier Lozano28-Dec-04 14:40
Javier Lozano28-Dec-04 14:40 
GeneralRe: sql exec Pin
Colin Angus Mackay28-Dec-04 14:44
Colin Angus Mackay28-Dec-04 14:44 
GeneralAdding user-defined property to Access db Pin
sharonz28-Dec-04 6:06
sharonz28-Dec-04 6:06 
GeneralADO.net in unmanaged code Pin
MARROT28-Dec-04 4:42
MARROT28-Dec-04 4:42 
GeneralSame SQL Statement in access and in vb.net return difference result Pin
Mekong River27-Dec-04 21:30
Mekong River27-Dec-04 21:30 
GeneralRe: Same SQL Statement in access and in vb.net return difference result Pin
WoutL28-Dec-04 0:38
WoutL28-Dec-04 0:38 
GeneralRe: Same SQL Statement in access and in vb.net return difference result Pin
Mekong River28-Dec-04 10:16
Mekong River28-Dec-04 10:16 
GeneralRe: Same SQL Statement in access and in vb.net return difference result Pin
Mekong River28-Dec-04 14:56
Mekong River28-Dec-04 14:56 
GeneralQuerying CSV file using ODBC Pin
Wayne Phipps27-Dec-04 9:12
Wayne Phipps27-Dec-04 9:12 
GeneralMS-Access insert problem Pin
Imtiaz Murtaza27-Dec-04 0:38
Imtiaz Murtaza27-Dec-04 0:38 
GeneralRe: MS-Access insert problem Pin
Rob Graham31-Dec-04 3:54
Rob Graham31-Dec-04 3:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.