Click here to Skip to main content
15,914,381 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Application_Error doesn't fire Pin
Mike Ellison14-Apr-06 6:37
Mike Ellison14-Apr-06 6:37 
GeneralRe: Application_Error doesn't fire Pin
Dario Solera14-Apr-06 10:35
Dario Solera14-Apr-06 10:35 
QuestionEarly Page Timeout Pin
duncanthescott14-Apr-06 4:30
duncanthescott14-Apr-06 4:30 
AnswerRe: Early Page Timeout Pin
Mike Ellison14-Apr-06 6:44
Mike Ellison14-Apr-06 6:44 
GeneralRe: Early Page Timeout Pin
duncanthescott14-Apr-06 8:34
duncanthescott14-Apr-06 8:34 
GeneralRe: Early Page Timeout Pin
duncanthescott14-Apr-06 8:37
duncanthescott14-Apr-06 8:37 
QuestionSplitting the contents of a page on 2 printed pages Pin
naglbitur14-Apr-06 4:22
naglbitur14-Apr-06 4:22 
AnswerRe: Splitting the contents of a page on 2 printed pages Pin
Mike Ellison14-Apr-06 6:12
Mike Ellison14-Apr-06 6:12 
One strategy would be to use the CSS style attribute page-break-before: always;. Here's an example of what I mean:
<html>
  <head>
    <title> Page Breaks with CSS </title>
  </head>

  <body>
    <form runat="server">
        <p>This text should print on the first page</p>
        <p style="page-break-before: always;">
            This Text should print on the second page
        </p>
    </form>
  </body>

</html>

AnswerRe: How to access a class function from Global.asax file??? Pin
Mike Ellison14-Apr-06 6:15
Mike Ellison14-Apr-06 6:15 
GeneralRe: How to access a class function from Global.asax file??? Pin
JimFeng14-Apr-06 6:20
JimFeng14-Apr-06 6:20 
GeneralRe: How to access a class function from Global.asax file??? Pin
Mike Ellison14-Apr-06 6:29
Mike Ellison14-Apr-06 6:29 
GeneralRe: How to access a class function from Global.asax file??? Pin
JimFeng14-Apr-06 8:01
JimFeng14-Apr-06 8:01 
Questionupload images on server Pin
Jmshastri14-Apr-06 3:52
Jmshastri14-Apr-06 3:52 
AnswerRe: upload images on server Pin
Mike Ellison14-Apr-06 6:28
Mike Ellison14-Apr-06 6:28 
QuestionAdd items to datalist Pin
munklefish14-Apr-06 3:30
munklefish14-Apr-06 3:30 
AnswerRe: Add items to datalist Pin
Mike Ellison14-Apr-06 3:32
Mike Ellison14-Apr-06 3:32 
GeneralRe: Add items to datalist Pin
munklefish14-Apr-06 3:40
munklefish14-Apr-06 3:40 
GeneralRe: Add items to datalist Pin
Mike Ellison14-Apr-06 5:54
Mike Ellison14-Apr-06 5:54 
QuestionExecute Code From SQL DB Pin
vip_3bdllah14-Apr-06 3:05
vip_3bdllah14-Apr-06 3:05 
AnswerRe: Execute Code From SQL DB Pin
Guffa14-Apr-06 3:28
Guffa14-Apr-06 3:28 
GeneralRe: Execute Code From SQL DB Pin
vip_3bdllah14-Apr-06 13:21
vip_3bdllah14-Apr-06 13:21 
QuestionCrystal Reports Pin
mcgann14-Apr-06 2:42
mcgann14-Apr-06 2:42 
AnswerRe: Crystal Reports Pin
jiturinku14-Apr-06 20:47
jiturinku14-Apr-06 20:47 
QuestionHow to make my check box click event work at client side Pin
Uma Kameswari14-Apr-06 1:57
Uma Kameswari14-Apr-06 1:57 
AnswerRe: How to make my check box click event work at client side Pin
jitendra gupta14-Apr-06 2:17
jitendra gupta14-Apr-06 2:17 

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.