Posts by Kawaii • 151 points
7 posts
-
1
votes2
answers169
viewsQ: C# ASP.NET - Get last value from a Stored Procedure Parameter
I have a Stored Procedure which inserts different fields. But however there is that when inserted I want to pick and place on the screen. It is entered into the database in the following way:…
-
2
votes2
answers356
viewsQ: Exception with timestamp in the database
I want to enter the time and date separately in the database, which have the fields timestamp and data, respectively. And I have the following code to add the fields:…
-
0
votes2
answers482
viewsQ: Insert time and time into database
I want to enter the time and date separately in the database, which have the fields timestamp and data, respectively. I have the following code on the insert button: SqlCommand sqlInsertCabecalho =…
-
0
votes1
answer941
viewsQ: C# List<> - Insert into database
I have an app that takes information from a TextBox, inserts into a list List<> and then shows in a CheckBoxList. Example: List<string> quantidade = new List<string>(); for (int i…
-
9
votes3
answers189
viewsQ: SQL - Restrict query data
Good morning, I have an app in WebForms than from two DropDownList obtain data from a database in MS SQL Server 2012. At first DropDownList it will present the name of several companies in the…
-
1
votes1
answer182
viewsQ: Formsauthentication causes an infinite redirect error - ASP.NET C#
Good afternoon, I am developing an ASP.NET application with C# that requires login, works and is being used this way: protected void Page_Load(object sender, EventArgs e) { SqlConnection conn = new…
-
0
votes1
answer401
viewsQ: Dynamically add Checkbox
I have a project where by clicking a button I intend to pick up the text of 3 TextBox and add them to a CheckBox. So far so good, the problem arises when I want to add these CheckBox automatic, for…