Click here to Skip to main content
15,886,873 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
#realJSOP2-Nov-21 0:43
mve#realJSOP2-Nov-21 0:43 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
Richard Deeming2-Nov-21 1:14
mveRichard Deeming2-Nov-21 1:14 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
Kevin Marois2-Nov-21 4:34
professionalKevin Marois2-Nov-21 4:34 
AnswerRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
Richard Deeming11-Oct-21 22:11
mveRichard Deeming11-Oct-21 22:11 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
Kevin Marois12-Oct-21 7:34
professionalKevin Marois12-Oct-21 7:34 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
#realJSOP2-Nov-21 1:01
mve#realJSOP2-Nov-21 1:01 
QuestionSecuring A Web API Pin
Kevin Marois20-Sep-21 11:51
professionalKevin Marois20-Sep-21 11:51 
AnswerRe: Securing A Web API Pin
#realJSOP2-Nov-21 1:06
mve#realJSOP2-Nov-21 1:06 
GeneralRe: Securing A Web API Pin
Kevin Marois2-Nov-21 4:35
professionalKevin Marois2-Nov-21 4:35 
QuestionLaravel 8 how to add elements to navbar app.blade Pin
paradox0215-Sep-21 2:01
paradox0215-Sep-21 2:01 
QuestionSSL Certificate Pin
Kevin Marois26-Aug-21 7:23
professionalKevin Marois26-Aug-21 7:23 
AnswerRe: SSL Certificate Pin
Richard Deeming26-Aug-21 21:52
mveRichard Deeming26-Aug-21 21:52 
GeneralRe: SSL Certificate Pin
Kevin Marois20-Sep-21 9:23
professionalKevin Marois20-Sep-21 9:23 
GeneralRe: SSL Certificate Pin
Richard Deeming20-Sep-21 21:47
mveRichard Deeming20-Sep-21 21:47 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 4:22
professionalKevin Marois21-Sep-21 4:22 
GeneralRe: SSL Certificate Pin
Richard Deeming21-Sep-21 5:36
mveRichard Deeming21-Sep-21 5:36 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 6:02
professionalKevin Marois21-Sep-21 6:02 
GeneralRe: SSL Certificate Pin
Richard Deeming21-Sep-21 6:37
mveRichard Deeming21-Sep-21 6:37 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 6:53
professionalKevin Marois21-Sep-21 6:53 
GeneralRe: SSL Certificate Pin
SlothTheCoder29-Oct-21 15:11
professionalSlothTheCoder29-Oct-21 15:11 
QuestionAPI Controller Question Pin
Kevin Marois26-Aug-21 6:13
professionalKevin Marois26-Aug-21 6:13 
AnswerRe: API Controller Question Pin
Richard Deeming26-Aug-21 6:41
mveRichard Deeming26-Aug-21 6:41 
GeneralRe: API Controller Question Pin
Kevin Marois26-Aug-21 7:28
professionalKevin Marois26-Aug-21 7:28 
GeneralRe: API Controller Question Pin
Richard Deeming26-Aug-21 21:41
mveRichard Deeming26-Aug-21 21:41 
QuestionModal Question Pin
MekaC24-Aug-21 10:40
MekaC24-Aug-21 10:40 
Hello Smile | :)

Trying to create a Bootstap/PHP modal form that will hold a img/video upload, iframe(external videos), and comment section. Tried to have a comment modal separate from media and its not working. How do I create this? Here is my code:

HTML
<pre><button type="button" class="btn btn-link" data-bs-toggle="modal" data-bs-target="#exampleModal"></button>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel"></h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
      
                    
                       <div class="form-group">
                           <label  class="col-lg-2 control-label">Photo</label>
                           <div class="col-lg-10">
                            <?php if(!empty($userPicture)){ ?>
                            <img src="<?php echo $userPicture; ?>" alt="">
                            <?php } ?>
                               <input type="file" name="picture" class="filestyle" data-classbutton="btn btn-default btn-lg" data-input="false" id="filestyle-0" tabindex="-1" style="position: fixed; left: -500px;"><div class="bootstrap-filestyle input-group"><input type="text" class="form-control " disabled="" placeholder="Choose file"> <span class="input-group-btn" tabindex="0">  <label for="filestyle-0" class="btn btn-default btn-lg"> ^__i class="fa fa-file-image-o" aria-hidden="true">      </label></div>
                            
                           </div>
                       </div>
                         <div class="embed-responsive embed-responsive-16by9 z-depth-1-half">
          <iframe class="embed-responsive-item" src="..." allowfullscreen></iframe>
        </div>
                          <div class="form-group">
                           <label for="inputemail" class="col-lg-2 control-label">Comment</label>
                           <div class="col-lg-10">
                              <textarea name="bio" class="form-control" placeholder="..."><?php echo !empty($userData['comment'])?$userData['bio']:''; ?></textarea>
                           </div>
                       </div>
                        <div class="form-group">
                         <input type="submit" class="btn btn-light" name="proSubmit">
                       </div>
                      </div>
      </div>
                      
      </div>
      
    </div>
  </div>

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.