Interesting questions
-
1
votes1
answer932
viewsHow I create 2 Foms simultaneously Django
What I want is in a single templante bring these 2 Forms simultaneously, in separate pages works, but the two together still could not do. Do I need to make an intermediate form? Am I making a point…
-
5
votes1
answer550
viewsHow do I validate an email field on Dart?
I created a simple project in Dart whose intention is to validate an e-mail field when a button is clicked, showing an error message. However, the function Regexp.hasMath is always returning false.…
-
0
votes1
answer160
viewsHow can I select this Datatable?
I created a datatable of variable columns whose collection takes place from a list of objects with several different attributes. In detail, I have an Avaliaprojeto class, which has a Projeto…
-
1
votes1
answer677
viewsChange color of an html table field according to php database status condition
In a table generated from database data, I need to change to certain colors of a <td></td> if the value of the field read in the database is as: 0 or 1. Example if the field read is in 0…
-
3
votes2
answers688
viewsSave data to a "Global Viewable"
Hello, I have a Dropdownlist, coming from a Viewbag, and I need to write this value in some kind of "global variable". I researched and saw that the best ways to do this, is to record in a Viewbag…
asp.net-mvcasked 11 years, 7 months ago Randrade 21,612 -
1
votes0
answers17
viewsSwagger 3.x works with . Net 4.7?
I am trying to create examples of Response and Input by Swagger but I am not succeeding. So far, the most I could was creating the MOCK request entry, the output ones I’m not getting. Follows code:…
-
0
votes1
answer251
viewsHow do I use Jenkins to see which files were modified in the commit?
I am working with PHP and Mysql on Windows, my repository is in Gitlab. I wish to use Jenkins to run a job or pipeline when pushing to the repository. The job should check the changed files in the…
-
0
votes1
answer54
viewsLaunch Modal Window
I’m trying to launch a window after sending email and then kill the session and then redirect to the index page. // Enviar email $mail->Send(); //echo "E-mail enviado com sucesso!"; echo…
-
1
votes0
answers21
viewsError calling route Debugger
I installed Route Debugger via Nuget: Install-Package Webapiroutedebugger. When I run my app, and I call the Bugger a route(http://localhost:9078/Rd), this way, explodes this error: But the…
-
0
votes0
answers145
viewsRefusal of accent with . bat
I have a . bat that when executed calls a script. My problem is that the files that are called by the script have "ç,á," type accents, things like that. So when he looks for the file, he can’t find…
-
1
votes1
answer773
viewsPlace div daughter element ul li occupying 100% of page width
The problem is this: I have a div who is daughter of a li element of a ul that does not start in the corner of the page. There are two subproblems: 1 - I need to be able to expand this div so that…
-
0
votes1
answer2790
viewsWhat command to display the WSL version
What’s the powershell command for the WSL version? I’ve tried: wsl --list --verbose does not list anything (Windows 10 version 1909)
-
1
votes1
answer63
viewsString marking and value return
Here is my program, I need to register up to 100 products, each product is available in 5 stores and I need to say the quantity sold of each product in each of the 5 stores. I will have a menu that…
-
0
votes2
answers1708
viewsTake data from another site, through Classname
How can I search for data present in another site’s HTML? The html part of the other site is this: <p class=MsoNormal align=center style='text-align:center'> <span…
phpasked 9 years, 3 months ago Wlader Murilo Alexandro 23 -
0
votes2
answers198
viewsInstallation Cartopy
I’m trying to install the cartopy library. But I’m not getting it. Can someone help me? I tried by pypi and returned the following error: C:\Users\Rafa>pip install cartopy Collecting cartopy…
-
2
votes2
answers1057
viewsAdd elements to a list inside a list compreension
I have following code: myList = [1,2,3,4,5] result = [] test = [result.append(i) for i in myList] whose output from test is: [None, None, None, None, None] I’d like to know why, since ex se: test =…
-
1
votes1
answer252
viewsDrag div to another div and resize on drop!
Good night, you guys! Basically what I’m trying to do is drag a div (#mainmsg) into another div (#msgprivhere), but I need it resized when I drop it. I would just like to know if this is possible. I…
-
1
votes1
answer264
viewsError Performing load command : org.hibernate.Objectnotfoundexception: No Row with the Given Identifier exists
Good afternoon! Loading a list from the Archive entity: org.hibernate.event.internal.DefaultLoadEventListener doOnLoad INFO: HHH000327: Error performing load command :…
-
0
votes1
answer71
viewsMakefile compile all files. c without specifying them
I’m trying to create a Makefile that makes all the files .c be compiled without me having to add the files line by line in the Makefile. I tried to keep up with the Creating a Makefile, but I found…
-
3
votes2
answers428
viewsFloat:left, div falling by the width of the div
I have a problem with float:left;: for a width greater than the page a div fell, but I wanted it to continue div previous. HTML: <div id="menu" class="menu"> MENU </div> <div…