Click here to Skip to main content
15,881,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Read Invoice number from pdf file Pin
ZurdoDev13-Oct-15 2:24
professionalZurdoDev13-Oct-15 2:24 
GeneralRe: Read Invoice number from pdf file Pin
Praveen Kandari15-Oct-15 1:36
Praveen Kandari15-Oct-15 1:36 
GeneralRe: Read Invoice number from pdf file Pin
ZurdoDev15-Oct-15 1:41
professionalZurdoDev15-Oct-15 1:41 
QuestionAsp.net Rapid Development Pin
macca248-Oct-15 3:38
macca248-Oct-15 3:38 
Questionissue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 5:23
9pagod7-Oct-15 5:23 
AnswerRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 5:51
mveRichard Deeming7-Oct-15 5:51 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 6:10
9pagod7-Oct-15 6:10 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 6:14
mveRichard Deeming7-Oct-15 6:14 
Here's the URL Rewrite[^] rule that I've used successfully on several sites now:
XML
<rewrite>
    <rules>
        <rule name="CanonicalHostName">
            <match url="(.*)" />
            <conditions>
                <add input="{HTTP_HOST}" pattern="^www\.domain\.com$" negate="true" />
            </conditions>
            <action 
                type="Redirect" 
                redirectType="Permanent" 
                url="http://www.domain.com/{R:1}" 
            />
        </rule>
    </rules>
</rewrite>




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 6:27
9pagod7-Oct-15 6:27 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming7-Oct-15 8:15
mveRichard Deeming7-Oct-15 8:15 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod7-Oct-15 16:04
9pagod7-Oct-15 16:04 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
Richard Deeming8-Oct-15 1:51
mveRichard Deeming8-Oct-15 1:51 
GeneralRe: issue in unifying domain.com with www.domain.com using 301 redirect Pin
9pagod8-Oct-15 2:31
9pagod8-Oct-15 2:31 
QuestionAccess to files from differentes server Pin
Wissem ElHami7-Oct-15 1:32
Wissem ElHami7-Oct-15 1:32 
AnswerRe: Access to files from differentes server Pin
ZurdoDev13-Oct-15 2:25
professionalZurdoDev13-Oct-15 2:25 
QuestionUpdate All records in Gridview Pin
macca246-Oct-15 23:09
macca246-Oct-15 23:09 
AnswerRe: Update All records in Gridview Pin
ZurdoDev13-Oct-15 2:27
professionalZurdoDev13-Oct-15 2:27 
QuestionCreating Reports in VS 2012 Pin
macca246-Oct-15 23:01
macca246-Oct-15 23:01 
AnswerRe: Creating Reports in VS 2012 Pin
ZurdoDev13-Oct-15 2:27
professionalZurdoDev13-Oct-15 2:27 
QuestionAdding 3 fields together and updating a fourth field with the value Pin
macca246-Oct-15 22:23
macca246-Oct-15 22:23 
AnswerRe: Adding 3 fields together and updating a fourth field with the value Pin
ZurdoDev13-Oct-15 2:28
professionalZurdoDev13-Oct-15 2:28 
QuestionBulk Calculation Pin
macca246-Oct-15 2:36
macca246-Oct-15 2:36 
GeneralRe: Bulk Calculation Pin
Kornfeld Eliyahu Peter6-Oct-15 21:12
professionalKornfeld Eliyahu Peter6-Oct-15 21:12 
GeneralRe: Bulk Calculation Pin
macca246-Oct-15 21:56
macca246-Oct-15 21:56 
AnswerRe: Bulk Calculation Pin
ZurdoDev13-Oct-15 2:29
professionalZurdoDev13-Oct-15 2:29 

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.