Posts by mateus andrade • 21 points
8 posts
-
0
votes1
answer625
viewsQ: Spacing two Ivs with bootstrap
I’m two Ids that are glued together and I wanted to give them a vertical survey, but I’m not doing it right. I’m wearing the bootstrap space between the file button and the save button in case…
-
0
votes0
answers64
viewsQ: Query on table name by Reflection
I’m trying to make a query in the table, which her name will come by the scope of the method, but does not allow me to use Select(); or Where(); System.Type referenceTableType =…
-
0
votes1
answer99
viewsQ: How to treat an array with N lines and turn to a list to send to C#
I’m sending an array of angular js for the controller of C#, and I’m treating him with stringfy for json. Only in my way POST he gets nothing, just returns null Code C# public void Post(string…
-
0
votes1
answer63
viewsA: Create new Row with input in the table when press enter
the important thing is to take the code from the enter button and then create the new line inside the array $scope.addline = function ($event) { debugger if (event.keyCode == 13) { var algo = {};…
-
-1
votes1
answer63
viewsQ: Create new Row with input in the table when press enter
I am creating a table using Angularjs and Bootstrap. I would like to know how to add a new line when arriving at the end and press enter key?…
-
-1
votes1
answer95
viewsQ: What is the ftp structure of a standard site?
would like to know what is the standard of directory when I create a basic website? and which ones can I use?(where do js,css,html etc go) ex: ftp access, and which files and folders I will have to…
-
1
votes1
answer56
viewsA: How to apply regex , using C# in a pdf file?
Resolved as follows PdfReader reader = new PdfReader(arquivo); var page = PdfTextExtractor.GetTextFromPage(reader,1); var exp = @"\s+\d{3}[.]\d{3}\s+\d"; Regex r =new Regex(exp); var result =…
-
-1
votes1
answer56
viewsQ: How to apply regex , using C# in a pdf file?
private static string BuscaComparacao (string url) { Regex r =new Regex("\S+\D{3}[.]\D{3}\S+\D)"; var result = r.Matches(url); return result[0].ToString(); } the code does not find the data I sent…