Click here to Skip to main content
Sign Up to vote bad
good
See more: VBASP.NET
Hi there,
I am having a problem with my if statement. I am trying to redirect the user to a page if count = 0 else to another page.
Dim count As Integer
count = Convert.ToInt32(txtCount.Text)
If (count = 0) Then
    Response.Redirect = ("NewBookings.aspx")
 
ElseIf (count > 0) Then
    Response.Redirect = ("TicketAvailable.aspx")
End If
error reads:
Error	1	Overload resolution failed because no accessible 'Redirect' accepts this number of arguments.
Posted 24 Aug '12 - 5:52
Edited 24 Aug '12 - 5:55


2 solutions

try this...
Response.Redirect("NewBookings.aspx")
  Permalink  
Comments
Member 9254084 - 24 Aug '12 - 12:03
hehe.. thanks.. i must b tired...
The error means what it says. I think that Response.Redirect also takes a bool as a second argument. Also, why check it twice ? Might it be < 0 ?
 
Use the intellisense, put a , after the page name and it will tell you what other arguments it expects.
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 294
1 OriginalGriff 195
2 CPallini 163
3 Mahesh Bailwal 159
4 Tadit Dash 148
0 Sergey Alexandrovich Kryukov 10,169
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 3,089


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 24 Aug 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid