If you want to use different styles in different parts of your work, you can use the following code, which renews the command \thispagestyle{plain}.
In the following example, the page style is "headings" for all pages in the preface and acknowledgements section, including the title pages. In the rest of the document, title pages have the page style "empty" and all other pages have the page style headings.
\documentclass[twoside,english]{book}
\usepackage{babel}
\usepackage{blindtext}
\usepackage{emptypage} % no headlines on empty pages
% ***************************************************************
\newcommand\plainstyle{empty}% variable for page style
\newcommand\pagestyleTitlepages[1]{\renewcommand\plainstyle{#1}}
\let\thispagestyleold\thispagestyle
\renewcommand\thispagestyle[1]{%
\def\textparam{#1}%
\def\isplain{plain}%
\ifx\textparam\isplain%
\thispagestyleold{\plainstyle}%
\else%
\thispagestyleold{#1}%
\fi%
}
% ***************************************************************
\begin{document}
\chapter*{Preface}
\pagenumbering{Roman}
\pagestyleTitlepages{headings}
\blindtext \blindtext \blindtext \blindtext \blindtext
\chapter*{Acknowledgements}
\blindtext
\chapter{Chapter one}
\pagenumbering{arabic}
\pagestyleTitlepages{empty}
\blindtext \blindtext
\section{Section}
\blindtext \blindtext
\chapter{Chapter two}
\blindtext \blindtext
\section{Section}
\blindtext \blindtext
\end{document}
\chapterissues\thispagestyle{plain}. – egreg May 03 '12 at 12:28