Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
Questionplz introduce appropriate component Pin
Member 125609791-Jun-16 22:15
Member 125609791-Jun-16 22:15 
AnswerRe: plz introduce appropriate component Pin
OriginalGriff1-Jun-16 23:07
mveOriginalGriff1-Jun-16 23:07 
AnswerRe: plz introduce appropriate component Pin
Gerry Schmitz2-Jun-16 5:20
mveGerry Schmitz2-Jun-16 5:20 
AnswerRe: plz introduce appropriate component Pin
Eddy Vluggen3-Jun-16 0:06
professionalEddy Vluggen3-Jun-16 0:06 
QuestionTest Methods Are Grayed out Pin
MadDashCoder1-Jun-16 19:24
MadDashCoder1-Jun-16 19:24 
AnswerRe: Test Methods Are Grayed out Pin
Gerry Schmitz2-Jun-16 5:13
mveGerry Schmitz2-Jun-16 5:13 
QuestionShow message box on top from windows tray application. Pin
raydebojyoti1-Jun-16 0:25
raydebojyoti1-Jun-16 0:25 
AnswerRe: Show message box on top from windows tray application. Pin
OriginalGriff1-Jun-16 1:08
mveOriginalGriff1-Jun-16 1:08 
GeneralRe: Show message box on top from windows tray application. Pin
raydebojyoti1-Jun-16 1:59
raydebojyoti1-Jun-16 1:59 
QuestionHow to find method is implemented Pin
Amit Patel198531-May-16 23:56
Amit Patel198531-May-16 23:56 
AnswerRe: How to find method is implemented Pin
Garth J Lancaster1-Jun-16 0:01
professionalGarth J Lancaster1-Jun-16 0:01 
GeneralRe: How to find method is implemented Pin
Amit Patel19851-Jun-16 20:17
Amit Patel19851-Jun-16 20:17 
AnswerRe: How to find method is implemented Pin
Bernhard Hiller1-Jun-16 4:09
Bernhard Hiller1-Jun-16 4:09 
Questionhow to use jcrop while uploading image Pin
Member 1255141831-May-16 21:00
Member 1255141831-May-16 21:00 
QuestionRe: how to use jcrop while uploading image Pin
Richard MacCutchan31-May-16 21:03
mveRichard MacCutchan31-May-16 21:03 
AnswerRe: how to use jcrop while uploading image Pin
Member 1255141831-May-16 21:10
Member 1255141831-May-16 21:10 
GeneralRe: how to use jcrop while uploading image Pin
Pete O'Hanlon31-May-16 21:20
mvePete O'Hanlon31-May-16 21:20 
GeneralRe: how to use jcrop while uploading image Pin
Member 125514181-Jun-16 1:01
Member 125514181-Jun-16 1:01 
GeneralRe: how to use jcrop while uploading image Pin
Pete O'Hanlon1-Jun-16 1:07
mvePete O'Hanlon1-Jun-16 1:07 
GeneralRe: how to use jcrop while uploading image Pin
Member 125514181-Jun-16 3:40
Member 125514181-Jun-16 3:40 
GeneralRe: how to use jcrop while uploading image Pin
Pete O'Hanlon1-Jun-16 5:31
mvePete O'Hanlon1-Jun-16 5:31 
GeneralRe: how to use jcrop while uploading image Pin
Member 125514181-Jun-16 20:35
Member 125514181-Jun-16 20:35 
GeneralRe: how to use jcrop while uploading image Pin
Pete O'Hanlon1-Jun-16 22:00
mvePete O'Hanlon1-Jun-16 22:00 
GeneralRe: how to use jcrop while uploading image Pin
Richard Deeming2-Jun-16 2:06
mveRichard Deeming2-Jun-16 2:06 
  1. This is nothing to do with C#;
  2. You're including both jquery.Jcrop.js and jquery.Jcrop.min.js - you only need one of those;
  3. You can't use app-relative paths (~/...) in a <script> tag;

If you're using WebForms:
HTML
<script src="<%= ResolveUrl("~/Scripts/jquery-1.10.2.min.js") %>"></script>
<script src="<%= ResolveUrl("~/Scripts/jquery.Jcrop.min.js") %>"></script>
<link href="<%= ResolveUrl("~/Content/jquery.Jcrop.min.css") %>" rel="stylesheet" />

If you're using MVC:
HTML
<script src="@Url.Content("~/Scripts/jquery-1.10.2.min.js")"></script>
<script src="@Url.Content("~/Scripts/jquery.Jcrop.min.js")"></script>
<link href="@Url.Content("~/Content/jquery.Jcrop.min.css")" rel="stylesheet" />




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: how to use jcrop while uploading image Pin
Member 125514182-Jun-16 2:14
Member 125514182-Jun-16 2:14 

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.