Exemplo n.º 1
0
 public IActionResult AddImageToAnswer([FromForm(Name = "image")] string image, [FromForm(Name = "aid")] string answerId)
 {
     if (image == null || !image.StartsWith("https://"))
     {
         image = "https://";
     }
     ds.AddImageToAnswer(answerId, (image));
     return(RedirectToAction("ShowQe", "Questions", new { qid = QuestionsController.focusQid }));
 }