Click here to Skip to main content
15,905,867 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to change ObjectDatasource sorting collation Pin
kuido207-Aug-07 21:34
kuido207-Aug-07 21:34 
GeneralRe: How to change ObjectDatasource sorting collation Pin
kubben8-Aug-07 1:38
kubben8-Aug-07 1:38 
QuestionTemporary List Pin
Sam Heller6-Aug-07 5:03
Sam Heller6-Aug-07 5:03 
AnswerRe: Temporary List Pin
kubben6-Aug-07 5:11
kubben6-Aug-07 5:11 
Questionhow to Lock Certain Columns from being Edited Pin
Vimalsoft(Pty) Ltd6-Aug-07 3:47
professionalVimalsoft(Pty) Ltd6-Aug-07 3:47 
AnswerRe: how to Lock Certain Columns from being Edited Pin
Vasudevan Deepak Kumar6-Aug-07 23:22
Vasudevan Deepak Kumar6-Aug-07 23:22 
GeneralRe: how to Lock Certain Columns from being Edited Pin
Vimalsoft(Pty) Ltd6-Aug-07 23:59
professionalVimalsoft(Pty) Ltd6-Aug-07 23:59 
QuestionBlog Engine giving error Pin
harryforum6-Aug-07 3:14
harryforum6-Aug-07 3:14 
we are trying o implement this in <b>asp.net 2.0 C#</b> and when we try to run the project it is giving this error can anybody help please urgent we took this project named as blogengine.net from http://www.codeplex.com/blogengine

It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Coding:

<?xml version="1.0"?>
<configuration>

<configSections>
<sectionGroup name="BlogEngine">
<section name="blogProvider" requirePermission="false" type="BlogEngine.Core.Providers.BlogProviderSection, BlogEngine.Core" allowDefinition="MachineToApplication" restartOnExternalChanges="true"/>
</sectionGroup>
</configSections>

<BlogEngine>
<blogProvider defaultProvider="XmlBlogProvider">
<providers>
<add name="XmlBlogProvider" type="BlogEngine.Core.Providers.XmlBlogProvider"/>
<add name="MSSQLBlogProvider" type="BlogEngine.Core.Providers.MSSQLBlogProvider"/>
</providers>
</blogProvider>
</BlogEngine>

<connectionStrings configSource="sql.config" />

<system.web>

<compilation debug="true" />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
<httpRuntime enableVersionHeader="false" sendCacheControlHeader="true" />
<trust level="High" />

<machineKey
validationKey="D9F7287EFDE8DF4CAFF79011D5308643D8F62AE10CDF30DAB640B7399BF6C57B0269D60A23FBCCC736FC2487ED695512BA95044DE4C58DC02C2BA0C4A266454C"
decryptionKey="BDAAF7E00B69BA47B37EEAC328929A06A6647D4C89FED3A7D5C52B12B23680F4"
validation="SHA1" decryption="AES"
/>

<authentication mode="Forms">
<forms timeout="129600" name=".AUXBLOGENGINE" protection="All" slidingExpiration="true" loginUrl="~/login.aspx" />
</authentication>

<pages enableSessionState="false" enableViewStateMac="true" enableEventValidation="true">
<controls>
<add namespace="Controls" tagPrefix="blog"/>
</controls>
</pages>

<customErrors mode="RemoteOnly">
<error statusCode="404" redirect="~/error404.aspx" />
</customErrors>

<membership defaultProvider="XmlMembershipProvider">
<providers>
<clear />
<add name="XmlMembershipProvider" type="BlogEngine.Core.Providers.XmlMembershipProvider" description="XML membership provider" xmlFileName="~/App_Data/users.xml"/>
</providers>
</membership>

<siteMap defaultProvider="PageSiteMap" enabled="true">
<providers>
<add name="PageSiteMap" description="The site map provider that reads in the .sitemap XML files." type="BlogEngine.Core.Web.PageSiteMap"/>
</providers>
</siteMap>

<httpModules>
<add name="UrlRewrite" type="BlogEngine.Core.Web.HttpModules.UrlRewrite"/>
<add name="CompressionModule" type="BlogEngine.Core.Web.HttpModules.CompressionModule"/>
<add name="ReferrerModule" type="BlogEngine.Core.Web.HttpModules.ReferrerModule"/>
<add name="WwwSubdomainModule" type="BlogEngine.Core.Web.HttpModules.WwwSubdomainModule"/>
</httpModules>

<httpHandlers>
<add verb="*" path="microsummary.axd" type="BlogEngine.Core.Web.HttpHandlers.MicroSummary" validate="false"/>
<add verb="*" path="file.axd" type="BlogEngine.Core.Web.HttpHandlers.FileHandler" validate="false"/>
<add verb="*" path="image.axd" type="BlogEngine.Core.Web.HttpHandlers.ImageHandler" validate="false"/>
<add verb="*" path="syndication.axd" type="BlogEngine.Core.Web.HttpHandlers.SyndicationHandler" validate="false"/>
<add verb="*" path="commentfeed.axd" type="BlogEngine.Core.Web.HttpHandlers.CommentFeedHandler" validate="false"/>
<add verb="*" path="sitemap.axd" type="BlogEngine.Core.Web.HttpHandlers.Sitemap" validate="false"/>
<add verb="*" path="trackback.axd" type="BlogEngine.Core.Web.HttpHandlers.TrackbackHandler" validate="false"/>
<add verb="*" path="pingback.axd" type="BlogEngine.Core.Web.HttpHandlers.PingbackHandler" validate="false"/>
<add verb="*" path="opensearch.axd" type="BlogEngine.Core.Web.HttpHandlers.OpenSearchHandler" validate="false"/>
<add verb="*" path="metaweblog.axd" type="BlogEngine.Core.API.MetaWeblog.MetaWeblogHandler" validate="false"/>
<add verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler" validate="false"/>
<add verb="*" path="css.axd" type="BlogEngine.Core.Web.HttpHandlers.CssHandler" validate="false"/>
<add verb="*" path="rating.axd" type="BlogEngine.Core.Web.HttpHandlers.RatingHandler" validate="false"/>
<add verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler" validate="false"/>
</httpHandlers>

</system.web>
</configuration>

regards
Harry
AnswerRe: Blog Engine giving error Pin
SHatchard6-Aug-07 3:55
SHatchard6-Aug-07 3:55 
GeneralRe: Blog Engine giving error Pin
harryforum7-Aug-07 0:33
harryforum7-Aug-07 0:33 
QuestionFillPieChart Pin
devsam6-Aug-07 3:11
devsam6-Aug-07 3:11 
AnswerRe: FillPieChart Pin
ednrgc6-Aug-07 5:47
ednrgc6-Aug-07 5:47 
GeneralRe: FillPieChart Pin
devsam6-Aug-07 19:14
devsam6-Aug-07 19:14 
QuestionRemote system Pin
sulabh20206-Aug-07 3:00
sulabh20206-Aug-07 3:00 
QuestionRegular Expression Validator Pin
Rahul Babu6-Aug-07 2:44
Rahul Babu6-Aug-07 2:44 
AnswerRe: Regular Expression Validator Pin
N a v a n e e t h6-Aug-07 2:56
N a v a n e e t h6-Aug-07 2:56 
GeneralRe: Regular Expression Validator Pin
Manuel F. Hernandez6-Aug-07 11:44
Manuel F. Hernandez6-Aug-07 11:44 
AnswerRe: Regular Expression Validator Pin
Nouman Bhatti6-Aug-07 5:07
Nouman Bhatti6-Aug-07 5:07 
AnswerRe: Regular Expression Validator Pin
Manuel F. Hernandez6-Aug-07 11:42
Manuel F. Hernandez6-Aug-07 11:42 
Questionlistbox onclick (ajax) Pin
xolla6-Aug-07 2:29
xolla6-Aug-07 2:29 
AnswerRe: listbox onclick (ajax) Pin
Vasudevan Deepak Kumar6-Aug-07 2:32
Vasudevan Deepak Kumar6-Aug-07 2:32 
GeneralRe: listbox onclick (ajax) Pin
xolla6-Aug-07 2:49
xolla6-Aug-07 2:49 
GeneralRe: listbox onclick (ajax) Pin
RSArockiam6-Aug-07 4:57
RSArockiam6-Aug-07 4:57 
QuestionProblem in running project... Pin
Syed Ali Raza6-Aug-07 2:28
Syed Ali Raza6-Aug-07 2:28 
AnswerRe: Problem in running project... Pin
Vasudevan Deepak Kumar6-Aug-07 2:30
Vasudevan Deepak Kumar6-Aug-07 2:30 

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.