Posts by Filipe Vilhena • 171 points
10 posts
-
1
votes1
answer497
viewsA: HTTP 403 Error - Access denied
I managed to solve my problem by replacing FormsAuthentication.RedirectToLoginPage() for Response.Redirect("./mypage.aspx") At least in my case it worked as desired.…
-
1
votes1
answer497
viewsQ: HTTP 403 Error - Access denied
I have a website that uses Forms Authentication. When I test in debug or on the development server, in IIS7, it works well. When I post to the Production server, and press the Logout button, an HTTP…
-
1
votes1
answer606
viewsQ: Change a Textbox to Multiline while maintaining CSS
I have a web application with several Textboxes. However, I need some of them to stay with Multiline because of the text they will contain. Every time I make this change I lose CSS settings. From…
-
0
votes1
answer104
viewsA: Doc to PDF conversion with Syncfusion dll alters font color
I obtained the solution in an answer to the same question in the English Stack overflow. The problem was the configuration of the word document, because the headers were set to the letter Automatic,…
-
0
votes1
answer104
viewsQ: Doc to PDF conversion with Syncfusion dll alters font color
I am converting a DOC document to PDF in VB.Net using Syncfusion dll and you are changing the color of my header. I have in Word Template Blue background and White letter, and is getting Black…
-
3
votes1
answer194
viewsA: Put Date in App.Config
This was the answer that helped me, from the Stack Overflow, translated into English: If you want to set the default value to DateTime.Now, or allow it to be another value, you probably want code…
-
2
votes1
answer194
viewsQ: Put Date in App.Config
I have an application that runs as a service and needed to configure in the app.config some variables, namely dates, so that when it is necessary to make changes to the search criteria (in cases…
-
2
votes1
answer158
viewsA: How to replace an Image with Text?
I found the answer to my problem in the stack overflow in English. This case worked for what I needed: Answer If you do not want to navigate to the link, here is the piece of code: Dim input As…
-
2
votes1
answer158
viewsQ: How to replace an Image with Text?
I am developing a project where I need to replace an image with a certain text when it is not loading. Example: If the image does not click, display a message stating that the image could not be…
-
5
votes1
answer243
viewsQ: Get an image of the body of an email, write to the database or in memory and show it in a new Viewer
I’m trying to build an E-mail viewer. To do so, I access my IMAP server and get email using the DLL ComponentSoft.Net.Mail. After getting the message, I intend to present it in my viewer. However, I…