A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
Today I got a case where a user reports that their authentication provider has been called a lot. Actually all the time. Since their authentication provider will connect to a transaction server that costs money for each transaction that is not...
When you listen to page publish event sometimes you want to need know if it is a new page or it is a update of old page. One way to do it is listen to CreatedPage event. If one page goes through both CreatedPage and PublishedPage events it is a ne...
Prerequisite: Vista IIS and IIS Manager SQL 2005 or SQL Express 2005 Microsoft SQL Server Management Studio Express A valid EPiServer License. ( You don't need download the Manager since it does not work on Vista . ) Files Download EPiServer C...
It is common in database driven web application to use id as parameter in querystring. By default EPiServer will assume that id parameter in querystring is only using by EPiServer and will remove it from Request.QueryString. And the recommend way ...
I need read opml and translate it to my objects. Instead of work with Xml Document I use System.Xml.Linq : using System.Xml; using System.Xml.Linq; ... ... XmlReader reader = new XmlTextReader(opmlUrl); XElement opml = XElement .Load (reader);...