Click here to Skip to main content
15,914,500 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getting file path and setting to a public variable ?!?! Pin
Richard Deeming1-Sep-17 9:30
mveRichard Deeming1-Sep-17 9:30 
GeneralRe: Getting file path and setting to a public variable ?!?! Pin
Mario Lukačić1-Sep-17 9:33
Mario Lukačić1-Sep-17 9:33 
QuestionAPI to https://images.google.com Pin
JanningJuul31-Aug-17 21:34
JanningJuul31-Aug-17 21:34 
AnswerRe: API to https://images.google.com Pin
Richard MacCutchan31-Aug-17 22:06
mveRichard MacCutchan31-Aug-17 22:06 
QuestionIP Address Control in for WPF? Pin
Member 1319657431-Aug-17 20:58
Member 1319657431-Aug-17 20:58 
AnswerRe: IP Address Control in for WPF? Pin
Richard MacCutchan31-Aug-17 21:10
mveRichard MacCutchan31-Aug-17 21:10 
GeneralRe: IP Address Control in for WPF? Pin
Member 1319657431-Aug-17 21:17
Member 1319657431-Aug-17 21:17 
GeneralRe: IP Address Control in for WPF? Pin
Richard MacCutchan31-Aug-17 21:35
mveRichard MacCutchan31-Aug-17 21:35 
AnswerRe: IP Address Control in for WPF? Pin
Bernhard Hiller31-Aug-17 22:24
Bernhard Hiller31-Aug-17 22:24 
SuggestionRe: IP Address Control in for WPF? Pin
Richard Deeming1-Sep-17 2:43
mveRichard Deeming1-Sep-17 2:43 
AnswerRe: IP Address Control in for WPF? Pin
Dave Kreskowiak1-Sep-17 7:52
mveDave Kreskowiak1-Sep-17 7:52 
QuestionWhy It displays error? Pin
sulomila31-Aug-17 20:48
sulomila31-Aug-17 20:48 
AnswerRe: Why It displays error? Pin
Richard MacCutchan31-Aug-17 21:09
mveRichard MacCutchan31-Aug-17 21:09 
GeneralRe: Why It displays error? Pin
sulomila31-Aug-17 21:36
sulomila31-Aug-17 21:36 
GeneralRe: Why It displays error? Pin
Richard MacCutchan31-Aug-17 21:46
mveRichard MacCutchan31-Aug-17 21:46 
GeneralRe: Why It displays error? Pin
sulomila31-Aug-17 22:35
sulomila31-Aug-17 22:35 
GeneralRe: Why It displays error? Pin
Richard MacCutchan31-Aug-17 23:02
mveRichard MacCutchan31-Aug-17 23:02 
QuestionHttp to Https Url redirection Pin
Member 1129085529-Aug-17 1:18
Member 1129085529-Aug-17 1:18 
My requirement is straight forward. i have Http://abc need to make it Https://abc . I have added the folowing code in web.config. i.e. added new rule in IIS. I have folowwed the URL rewriting module in IIS.


<rewrite>
            <rules>
                <rule name="http to https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^off$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Found" />
                </rule>
            </rules>
        </rewrite>



It's not working .
AnswerRe: Http to Https Url redirection Pin
OriginalGriff29-Aug-17 1:42
mveOriginalGriff29-Aug-17 1:42 
GeneralRe: Http to Https Url redirection Pin
Member 1129085529-Aug-17 2:11
Member 1129085529-Aug-17 2:11 
GeneralRe: Http to Https Url redirection Pin
OriginalGriff29-Aug-17 2:28
mveOriginalGriff29-Aug-17 2:28 
Questionalt keywords problem Pin
Member 1337599027-Aug-17 22:27
Member 1337599027-Aug-17 22:27 
AnswerRe: alt keywords problem Pin
OriginalGriff27-Aug-17 23:32
mveOriginalGriff27-Aug-17 23:32 
QuestionTrying to Use the VCCodeModel Interface Pin
Richard Andrew x6427-Aug-17 13:17
professionalRichard Andrew x6427-Aug-17 13:17 
QuestionCoding Challenge Pin
Mycroft Holmes26-Aug-17 15:14
professionalMycroft Holmes26-Aug-17 15:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.