Click here to Skip to main content
15,913,941 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Increasing acronym popup time Pin
EnkelIk3-Feb-04 1:21
EnkelIk3-Feb-04 1:21 
Questionhow do i align text together? Pin
coda_x2-Feb-04 2:08
coda_x2-Feb-04 2:08 
AnswerRe: how do i align text together? Pin
theJazzyBrain2-Feb-04 3:59
theJazzyBrain2-Feb-04 3:59 
AnswerRe: how do i align text together? Pin
henningbenk2-Feb-04 5:24
professionalhenningbenk2-Feb-04 5:24 
QuestionHow to create XML Web Service automatically on IIS6.0 Pin
yu-yu1-Feb-04 23:46
yu-yu1-Feb-04 23:46 
GeneralZero-length string Pin
Moonbrat1-Feb-04 6:11
Moonbrat1-Feb-04 6:11 
GeneralRe: Zero-length string Pin
Roger Wright1-Feb-04 7:12
professionalRoger Wright1-Feb-04 7:12 
GeneralRe: Zero-length string Pin
Moonbrat1-Feb-04 18:12
Moonbrat1-Feb-04 18:12 
Here's the entire Asp code (the rest was to generate the html so I left that out).

________________________________________________________





<title>Add a Category




<% If Request.QueryString("mode") = "doit" Then

If Trim(Request.Form("CategoryName")) = "" Then

Response.Write("

You didn't fill out one or more required fields. Use Back-Button of Browser to correct it or click here!

")

Else Set objConn Server.CreateObject("ADODB.Connection")
Set objRs = Server.CreateObject("ADODB.Recordset")
objConn.Open strConn
objRs.Open "SELECT * FROM Categories", objConn, 3, 3

objRs.AddNew
objRs("CategoryName") = Trim(Request.Form("SubName"))
objRs.Update
objRs.Close
objConn.Close
Set objRs = Nothing
Set objConn = Nothing

Response.Write("

Sub successfully added. Click to continue!

")
End If

End If

%>

____________________________________________________________

Sorry if it looks a mess but it looks better in the edit screen I use for the file as everything is connected.

Anyways, I have the add problem with EVERY script.
I can login but nothing else wants to do anything, like add authors, add news, add categories and add subcategories.

It's annoying me so much!

Thanks for looking at it...I hope you can find the problem where I can't.
At least if it's found in this script I can compare it to the rest of them.

Thanks.
-Moonbrat
GeneralRe: Zero-length string Pin
Moonbrat1-Feb-04 18:19
Moonbrat1-Feb-04 18:19 
GeneralRe: Zero-length string Pin
Roger Wright2-Feb-04 4:29
professionalRoger Wright2-Feb-04 4:29 
Generalclear chache from script Pin
Roland Bär1-Feb-04 2:29
Roland Bär1-Feb-04 2:29 
GeneralTrim$() in javascript Pin
Hesham Amin1-Feb-04 1:24
Hesham Amin1-Feb-04 1:24 
GeneralRe: Trim$() in javascript Pin
Roger Wright1-Feb-04 3:55
professionalRoger Wright1-Feb-04 3:55 
GeneralRe: Trim$() in javascript Pin
Nick Parker1-Feb-04 8:34
protectorNick Parker1-Feb-04 8:34 
GeneralRe: Trim$() in javascript Pin
Hesham Amin1-Feb-04 9:52
Hesham Amin1-Feb-04 9:52 
GeneralRe: Trim$() in javascript Pin
boogs2-Feb-04 9:12
boogs2-Feb-04 9:12 
GeneralRe: Trim$() in javascript Pin
theJazzyBrain2-Feb-04 21:24
theJazzyBrain2-Feb-04 21:24 
Questionhow to adjust line spacing within text? Pin
coda_x31-Jan-04 15:39
coda_x31-Jan-04 15:39 
AnswerRe: how to adjust line spacing within text? Pin
ZoogieZork31-Jan-04 19:41
ZoogieZork31-Jan-04 19:41 
GeneralCross domain DOM access for parent.frames[0].location.href Pin
Phil G31-Jan-04 2:28
Phil G31-Jan-04 2:28 
GeneralRe: Cross domain DOM access for parent.frames[0].location.href Pin
alex.barylski31-Jan-04 9:34
alex.barylski31-Jan-04 9:34 
Generalembedded media player... Pin
l a u r e n30-Jan-04 11:40
l a u r e n30-Jan-04 11:40 
GeneralRe: embedded media player... Pin
alex.barylski30-Jan-04 12:21
alex.barylski30-Jan-04 12:21 
GeneralRe: embedded media player... Pin
l a u r e n30-Jan-04 12:30
l a u r e n30-Jan-04 12:30 
Generaluse XMLHTTP Pin
Nathan Ridley31-Jan-04 12:33
Nathan Ridley31-Jan-04 12:33 

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.