Click here to Skip to main content
16,008,183 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Data exchange with client and IIS5 Pin
johnb12-Nov-02 21:55
johnb12-Nov-02 21:55 
GeneralActiveX warning of IE6.0 Pin
Hans Ruck12-Nov-02 6:26
Hans Ruck12-Nov-02 6:26 
GeneralRe: ActiveX warning of IE6.0 Pin
Ray Cassick12-Nov-02 7:24
Ray Cassick12-Nov-02 7:24 
GeneralRe: ActiveX warning of IE6.0 Pin
benjymous15-Nov-02 0:39
benjymous15-Nov-02 0:39 
General8pt, 9pt , 10pt Pin
leppie12-Nov-02 2:24
leppie12-Nov-02 2:24 
GeneralRe: 8pt, 9pt , 10pt Pin
Paul Watson12-Nov-02 21:44
sitebuilderPaul Watson12-Nov-02 21:44 
GeneralAdding Entries to DropDownList Box Pin
Pradhip11-Nov-02 11:18
Pradhip11-Nov-02 11:18 
GeneralRe: Adding Entries to DropDownList Box Pin
Paul Watson11-Nov-02 21:08
sitebuilderPaul Watson11-Nov-02 21:08 
Pradhip wrote:
If i try adding this entry and then populating from the database the database entries wipe out this entry or i get some nasty errors.

(I assume you are doing this in ASP because you are in the web dev forum, not the ASP.NET forum. I also assume this is not a Windows app you are talking about...)

Ok I do not have access to your code so I am just going to give you a sample of how we do it:



<select name="selSample" id="selSample">
    <option value="na" selected="true">Select one by clicking</option>
    <%
        Do Until rs.EOF
            Response.Write("<option value=""" & rs("id") & """>" & rs("Title")  & "</option>")
            rs.MoveNext
        Loop
    %>
</select>


As you can see first the <select> is created, then the default/selected item created. Then it loops through all the items in the recordset outputting the neccesary <option> elements.

Paul Watson
Bluegrass
Cape Town, South Africa

Ray Cassick wrote:
Well I am not female, not gay and I am not Paul Watson
Generalhost two sites on IIS (W2K) Pin
peterchen11-Nov-02 1:42
peterchen11-Nov-02 1:42 
GeneralRe: host two sites on IIS (W2K) Pin
Paul Watson11-Nov-02 2:24
sitebuilderPaul Watson11-Nov-02 2:24 
GeneralRe: host two sites on IIS (W2K) Pin
peterchen11-Nov-02 3:02
peterchen11-Nov-02 3:02 
GeneralRe: host two sites on IIS (W2K) Pin
leppie11-Nov-02 8:59
leppie11-Nov-02 8:59 
GeneralCreating same text value for two text fields Pin
BravoTwoZero11-Nov-02 1:35
BravoTwoZero11-Nov-02 1:35 
GeneralRe: Creating same text value for two text fields Pin
Nick Parker11-Nov-02 8:21
protectorNick Parker11-Nov-02 8:21 
QuestionSolid border only at the bottom border? Pin
Rickard Andersson2010-Nov-02 1:30
Rickard Andersson2010-Nov-02 1:30 
AnswerRe: Solid border only at the bottom border? Pin
Stephane Rodriguez.10-Nov-02 1:55
Stephane Rodriguez.10-Nov-02 1:55 
AnswerRe: Solid border only at the bottom border? Pin
Paul Watson10-Nov-02 21:16
sitebuilderPaul Watson10-Nov-02 21:16 
GeneralRe: Solid border only at the bottom border? Pin
Rickard Andersson2010-Nov-02 22:04
Rickard Andersson2010-Nov-02 22:04 
GeneralIIS 5.0 and ASP SSI oddities Pin
Roger Wright9-Nov-02 21:44
professionalRoger Wright9-Nov-02 21:44 
GeneralRe: IIS 5.0 and ASP SSI oddities Pin
Vasudevan Deepak Kumar10-Nov-02 17:35
Vasudevan Deepak Kumar10-Nov-02 17:35 
GeneralRe: IIS 5.0 and ASP SSI oddities Pin
Roger Wright10-Nov-02 17:41
professionalRoger Wright10-Nov-02 17:41 
Questiontry asp.net web matrix? Pin
zhoujun9-Nov-02 15:20
zhoujun9-Nov-02 15:20 
AnswerRe: try asp.net web matrix? Pin
David Stone9-Nov-02 19:38
sitebuilderDavid Stone9-Nov-02 19:38 
GeneralRe: try asp.net web matrix? Pin
zhoujun9-Nov-02 20:34
zhoujun9-Nov-02 20:34 
GeneralRe: try asp.net web matrix? Pin
David Stone11-Nov-02 5:06
sitebuilderDavid Stone11-Nov-02 5:06 

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.