[Tex/LaTex] Using pause without increasing page number

beamer

Beamer displays page number of the form: page number/ total page at the end of the slide. This page number increases every time I use the pause command. Is there a way to make all the pages creating by pause from a single frame to have the same page number. I just don't want to discourage the listeners with too many slides. Thanks.

======== Update =======
Thanks for the comment, here is a minimal working example, I would like to have 2 pages with the same numbering 1/1 instead of 1/2 and 2/2:

\documentclass{beamer}
\usetheme{Warsaw}
\setbeamertemplate{navigation symbols}{}    

\begin{document}

\setbeamertemplate{footline}[page number]{}

\begin{frame}\frametitle{My frame}
First question?
\begin{itemize}
  \item first item
  \item second item
\end{itemize} \pause

Second question?
\begin{itemize}
  \item first item
  \item second item
\end{itemize}
\end{frame}

\end{document}

Best Answer

Use frame number instead page number in

\setbeamertemplate{footline}[frame number]{}

enter image description here

Code:

\documentclass{beamer}
\usetheme{Warsaw}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[frame number]{}

\begin{document}
\begin{frame}\frametitle{My frame}
  First question?
  \begin{itemize}
    \item first item
    \item second item
  \end{itemize} \pause 

  Second question?
  \begin{itemize}
    \item first item
    \item second item
  \end{itemize}
\end{frame}
\end{document}