Posts by poveda • 11 points
3 posts
-
0
votes3
answers712
viewsA: Compare string to Enum, inside the lambda?
From what I understand the problem is that you have an "Enum" with strings. Point 1: If you do not explicitly state the value of that enum it assumes the launch order and infers numbers Example:…
-
0
votes2
answers518
viewsA: Ajax always falls into 'error' even when successful (C# MVC5)
Try returning only Success. At least with Angular and MVC5 always fall into error when passing any result beyond OK. Another solution is to try to put Response at 200 in hand. Response.StatusCode =…
-
1
votes1
answer370
viewsA: Loop in Vbscript
I know the answer sounds simplistic, but you’ve already tried doing a while with True or 1 encapsulating the entire desired code block. Remember While runs the loop until the condition is false…