Posts by wallafe sousa • 107 points
10 posts
-
3
votes2
answers333
viewsA: Open page in modal form
I made on a page, I also had the same doubt but! the answer is quite simple. In the event of the button and only by the following code, System.Web.UI.ScriptManager.RegisterClientScriptBlock(this,…
-
0
votes3
answers132
viewsA: Choose Modal from variable
The easiest way to do this is through the session EXAMPLE: Criando uma Session na sua pagina index.cs: Session["nomeSession"] = "aqui você pega valor que você deseja passar pra outra pagina"; Lendo…
-
0
votes1
answer79
viewsA: How to check and uncheck the Telerik component Checkbox?
Hello, in your case it would be easier to use a RADGRID with a selector where you can use the Gridclientselectcolumn that would be more practical! Example to see if the value was selected or not for…
-
1
votes2
answers67
viewsQ: Change the color of the Microsoft Edge scrollbar
I have already used the following section on the page ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.5); border-radius: 4px; } but this works only on some browsers as the documentation…
-
1
votes1
answer43
viewsQ: What is the Difference between Rebin and Databind?
My question is about c#. Would you like to know the difference between Rebind and Databind? which is very specific! 'Cause I search the sites and I never see an answer that goes straight to the…
c#asked wallafe sousa 107 -
0
votes1
answer92
viewsA: Create automatic backup on sqlserver and send confirmation email
Hello, I saw this tutorial and used this very good utility by the way and very simple! following example! After you have installed you only need to connect the utilities to your sql instance as the…
backupanswered wallafe sousa 107 -
0
votes3
answers91
viewsA: Sort by SQL numbering
So Intendi you need the sequence, use DESC after order by Example; declare @TABLE table(id int, Norma varchar(30), ReqNorma varchar(50)) insert into @TABLE select 106, 'ISO 9001', '4.2 entendo as…
sqlanswered wallafe sousa 107 -
1
votes2
answers196
viewsA: Modal does not open in HTML
I don’t see the bootstrap.min.js tag check if your page exists! like Bootstrap and a package you have to import them if you want it to work right
-
1
votes1
answer194
viewsA: Script to determine a desired column
I tried to simulate here and I saw this missing information! I am posting the query here and you tell me what is missing thank you. declare @Tecnicos table(IDGestor int, NomeGestor varchar(10),…
-
0
votes1
answer105
viewsA: using CAST in INNER
Based on what you provided I managed to do something that maybe you need! Obs: ignore the temporary tables! declare @rec table(chvbfj int, doc varchar(20)) insert into @rec values(1,'1') insert into…