Posts by Marco Felipe • 161 points
10 posts
-
3
votes1
answer1544
viewsQ: Can I use ANSI charset in HTML files?
In order to be able to publish texts daily using some editor like Notepad++ for example, I would like to type the words with an accent and save them in the HTML file. I’ve been reading that the…
-
0
votes1
answer2541
viewsA: Input sequence was not in an incorrect format
I found the cause of the problem: numeroGrid = Convert.ToInt32(((LinkButton)row.FindControl("lkbNumero")).Text); If the textbox was empty and numerical.…
-
-1
votes1
answer2541
viewsQ: Input sequence was not in an incorrect format
I am receiving the "Input sequence was not in an incorrect format" when I make an inclusion in the bank and update the gridview. But this only happens for the first record. From what I tried I…
-
0
votes3
answers3432
viewsA: How to take values from a Session and download them into variables?
Try to do so. string teste = HttpContext.Current.Session["NOME_SESSION"];
-
1
votes2
answers884
viewsQ: How to call an ASPX page function in another project?
How to call an ASPX page function in another project? When clicking insert I call a project to make the business rules, at a certain moment I need to call a C# function that is on the page and after…
-
4
votes2
answers3494
viewsQ: How to change the text of the OK button of Alert?
People I need an Alert with the "Confirm" button instead of the "OK" button. how do I do that?
-
0
votes1
answer49
viewsQ: How to use macros in VS2008?
I only know how to use macros in Netbeans according to the manual https://netbeans.org/kb/docs/ide/macro-keywords_pt_BR.html. But I wanted to know how do I use macros in vs2008? I want to set a…
-
1
votes6
answers2938
viewsQ: I can’t get the value of an Asp:hiddenField in c#, it’s always empty
I’m having a strange problem here. I’m assigning value to a asp:hiddenField via javascript (already tested giving alert and it shows the correct value), but then when I try to get its value in C…
-
5
votes2
answers3054
viewsQ: How to use special characters in strings?
What are the characters for ~ and @ in the string of path in ASP.NET. Example: StreamReader srFile = new StreamReader(@"\\server\pasta\arquivo.html");…
-
0
votes1
answer131
viewsQ: What are the advantages of using ASP.NET’s formView control?
What are the advantages of using the control formView of ASP.NET?