Quantcast
Channel: ASP.NET AJAX + Ajax Control Toolkit (ACT)
Viewing all articles
Browse latest Browse all 5678

need help using asaj autocomplete

$
0
0

i know there is threades about this issues but i need more specific help with the code  i'm new in this i get the following error while using two diffrent codes .. 

i want 2 connect ajax to my database built in Visual Studio 2012 could i get some advice?

this one

Imports System
Imports System.Collections.Generic
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Data.SqlClient
Imports System.Data
Imports System.Data.Common
Imports AtlasTextBoxAutoComplete.DL
Imports System.Collections<WebService(Namespace:="http://tempuri.org/")> _<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _<System.Web.Script.Services.ScriptService()> _<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class WebService
    Inherits System.Web.Services.WebService<WebMethod()> _<System.Web.Script.Services.ScriptMethod()> _
        Public Function FindName(ByVal prefixText As String, ByVal count As Integer) As String()
        'return all records whose Title starts with the prefix input string
        Dim titleArList As New List(Of String)()
        Dim drProducts As SqlDataReader = sqlProductProvider.GetNameList(prefixText)
        While drProducts.Read()
            Dim strTemp As String = Convert.ToString(drProducts("Name"))
            titleArList.Add(strTemp)
        End While
        Return titleArList.ToArray()
    End Function
End Class
the error is 

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: BC30002: Type 'System.Web.Script.Services.ScriptService' is not defined.

Source Error:

Line 12: ' To allow this Web Service to be called from script, using ASP.NET AJAX, 
Line 13: ' uncomment the following line.Line 14: <System.Web.Script.Services.ScriptService()> _ Line 15: <WebService(Namespace:="http://tempuri.org/")> _
Line 16: <WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _

and this one
<%@ Page Language="VB"  CodeFile="index.aspx.vb" Inherits="index" %><script runat = "server">

    
    Sub page_load(ByVal o As Object, ByVal e As EventArgs)
        On Error Resume Next
        getcounties()
    End Sub
    
     
    Sub SearchSub(ByVal o As Object, ByVal e As EventArgs)
        On Error Resume Next
        Response.Redirect("search_library/search_page.aspx?st=" & SearchMovers.Text)
    End Sub
    Sub GoMainSite(ByVal obj As Object, ByVal e As Web.UI.ImageClickEventArgs)
        On Error Resume Next
        'Response.Redirect("~/index.aspx") ' have to be change
    End Sub
    Function getdata(ByVal sql As String) As Data.DataSet
        Dim urlstr2 As String
        Dim strConn As String
        Dim conn As Data.SqlClient.SqlConnection
        Dim da As New Data.SqlClient.SqlDataAdapter()
        Dim ds As New Data.DataSet()
        On Error Resume Next
        urlstr2 = Mid(Request.ServerVariables("PATH_TRANSLATED"), 1, Request.ServerVariables("PATH_TRANSLATED").LastIndexOf("\")) & _"\app_data\zip.mdf"
        strConn = "Data Source=.\SQLEXPRESS;AttachDBFilename=" & _"'" & urlstr2 & "';" & _"Integrated Security=True;Connect Timeout=30;User Instance=True"
        conn = New Data.SqlClient.SqlConnection(strConn)
        conn.Open()
        da = New Data.SqlClient.SqlDataAdapter(sql, conn)
        da.Fill(ds, "data")
        Return ds
    End Function
    Sub getcounties()
        Dim i As Integer
        Dim j As Integer
        Dim r As Integer = 1
        Dim y As Integer = 0
        Dim sql As String = "select distinct  * from full_name_of_states  order by state_long"
        Dim st As String
        Dim ds As Data.DataSet
        On Error Resume Next
        ds = getdata(sql)
        Dim x As Double = ds.Tables("data").Rows.Count / 8
        Dim z As Integer = Int(x)
        If x - Int(x) > 0 Then
            z += 1
        End If
        z -= 1
        For i = 0 To z
            Dim row As New System.Web.UI.WebControls.TableRow
            For j = 0 To 7
                Dim cel As New System.Web.UI.WebControls.TableCell
                row.Cells.Add(cel)
            Next
            tbl_cnt.Rows.Add(row)
        Next
        y = 0
        For j = 0 To 7
            For i = 0 To z
                st = "<a class='button' href='http://www.ar-movers.com/states/" & (Trim(ds.Tables("data").Rows(y)("state_long")).Replace(" ", "_")).ToLower & "_" & Trim(ds.Tables("data").Rows(y)("state_short")).ToLower & ".aspx'>" & ds.Tables("data").Rows(y)("state_long") & "</a>"
                'st = "<a class='button' href='javascript:GoNextPage("" http://www.armovers.com/states/" & (Trim(ds.Tables("data").Rows(y)("state_long")).Replace(" ", "_")).ToLower & "_" & Trim(ds.Tables("data").Rows(y)("state_short")).ToLower & ".aspx"")'>" & ds.Tables("data").Rows(y)("state_long") & "</a>"
                tbl_cnt.Rows(i + 1).Cells(j).Text = st
                y += 1
                If y = ds.Tables("data").Rows.Count Then
                    Exit For
                End If
            Next i
            If y = ds.Tables("data").Rows.Count Then
                Exit For
            End If
        Next j
    End Sub</script><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"><link href="css/calsses.css" rel="stylesheet" type="text/css" /><title>Untitled Page</title></head><body><form runat="server" ><asp:Table ID="tbl" runat="server" Width="800px" HorizontalAlign="Center">   <asp:TableRow Width="100%" runat="server"><asp:TableCell Width="20%" VerticalAlign="Top" runat="server"><asp:ImageButton runat="server"  ImageUrl="images/logo.jpg" Width="100%" ID="ing_logo" OnClick="GoMainSite"/></asp:TableCell><asp:TableCell Width="80%" VerticalAlign="Middle" HorizontalAlign="Center" runat="server">       <b>AR - GIVE SERVICES OF CONNECTION TO MOVING COMPANIES, AND OTHER SOLUTIONS</b>   </asp:TableCell>       </asp:TableRow>    <asp:TableRow Width="100%" VerticalAlign="Bottom" runat="server"><asp:TableCell ColumnSpan="4" VerticalAlign="Bottom" runat="server">         <hr  style="color: #000099;"/></asp:TableCell>    </asp:TableRow><asp:TableRow Width="100%" runat="server"><asp:TableCell ColumnSpan="4" runat="server"><asp:Table runat="server" Width="100%" BackColor="AliceBlue" ><asp:TableRow Width="100%" runat="server"><asp:TableCell ID="Local_movers"  runat="server"><asp:HyperLink ID="LocalMovers" Target="_self" NavigateUrl="~/moving_companies/chosen_locations.aspx" CssClass ="title" runat="server">Moving Companies</asp:HyperLink>                             </asp:TableCell>                 <asp:TableCell ID="International_Movers"  runat="server"><asp:HyperLink ID="InternaionalMoving" Target="_self" NavigateUrl="~/internaional_moving/internaional_moving.aspx" CssClass ="title" runat="server">International Movers</asp:HyperLink>                           </asp:TableCell><asp:TableCell ID="Auto_Transport"  runat="server"><asp:HyperLink ID="AutoTransport" Target="_self" NavigateUrl="~/auto_transport/auto_transport.aspx" CssClass ="title" runat="server">Auto Transport</asp:HyperLink></asp:TableCell><asp:TableCell ID="Self_Storage"  runat="server"><asp:HyperLink ID="SelfStorage" Target="_self" NavigateUrl="~/self_storage/self_storage.aspx" CssClass ="title" runat="server">Self Storage</asp:HyperLink>                             </asp:TableCell><asp:TableCell ID="Boxes_property"  runat="server"><asp:HyperLink ID="BoxesProperty" Target="_self" NavigateUrl="~/boxes_property/boxes_property.aspx" CssClass ="title" runat="server">Boxes property</asp:HyperLink></asp:TableCell><asp:TableCell ID="TableCell2"  runat="server">                         <asp:HyperLink ID="LongDistanceMovers" Target="_self" NavigateUrl="~/Contact_us.aspx" CssClass ="title" runat="server">Contact Us </asp:HyperLink>                             </asp:TableCell></asp:TableRow> </asp:Table></asp:TableCell>             </asp:TableRow><asp:TableRow Width="100%" VerticalAlign="Top" runat="server"><asp:TableCell ColumnSpan="3" VerticalAlign="Top" runat="server">          <hr  style="color: #000099;"/></asp:TableCell>    </asp:TableRow>     <asp:TableRow Height="20px" runat="server"  BackColor="AliceBlue"><asp:TableCell runat="server" ColumnSpan="3" HorizontalAlign="left" ><asp:Table runat="server" ID = "tsrch"><asp:TableRow><asp:TableCell Width="220px"><asp:Label ID="srch" runat="server" Text="General Companies's Searching " ForeColor="#000099"></asp:Label>                        </asp:TableCell><asp:TableCell HorizontalAlign="Left" ><asp:TextBox ID="SearchMovers" runat="server" Width="400px" ></asp:TextBox></asp:TableCell><asp:TableCell HorizontalAlign="Center" Width= "95px">&nbsp;<asp:LinkButton ID="srchm" CssClass="a" runat="server" OnClick="SearchSub">Search</asp:LinkButton> </asp:TableCell>                              </asp:TableRow></asp:Table></asp:TableCell></asp:TableRow>      <asp:TableRow Width="100%" runat="server" VerticalAlign="Top"><asp:TableCell Width="20%" runat="server" VerticalAlign="Top"  HorizontalAlign="Left" ><asp:Table runat="server"><asp:TableRow ID="TableRow15" runat="server"><asp:TableCell ID="TableCell17" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow14" runat="server"><asp:TableCell ID="TableCell16" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow16" runat="server"><asp:TableCell ID="TableCell18" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow64" runat="server"><asp:TableCell ID="TableCell62" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Text="Main Areas For Movers" CssClass="top_left" Font-Size="Small" VerticalAlign="Top"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow35" runat="server"><asp:TableCell ID="TableCell37" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow36" runat="server"><asp:TableCell ID="TableCell38" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><asp:HyperLink ID="New_York_Ny" Target="_self" NavigateUrl= "~/states/new_york_ny.aspx" CssClass="LeftMenuLink"  runat="server">>>>> New York Movers - NY,Florida</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow57" runat="server"><asp:TableCell ID="TableCell1" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink4" Target="_self" NavigateUrl= "~/states/california_ca.aspx" CssClass="LeftMenuLink"  runat="server">>>>> California Movers-CA, Orange</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow13" runat="server"><asp:TableCell ID="TableCell15" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink5" Target="_self" NavigateUrl= "~/states/illinois.il.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Chicago Movers - IL,Chicago</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow2" runat="server"><asp:TableCell ID="TableCell4" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow21" runat="server"><asp:TableCell ID="TableCell23" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink6" Target="_self" NavigateUrl= "~/states/texas_tx.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Texas Movers - TX,Dallas</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow3" runat="server"><asp:TableCell ID="TableCell5" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow4" runat="server"><asp:TableCell ID="TableCell6" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow60" runat="server"><asp:TableCell ID="TableCell59" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink7" Target="_self" NavigateUrl= "~/states/arizona_az.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Arizona Movers - AZ,Phoenix</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow65" runat="server"><asp:TableCell ID="TableCell66" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink8" Target="_self" NavigateUrl= "~/states/massachusetts_ma.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Boston Movers - MA,Suffolk</asp:HyperLink></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow5" runat="server"><asp:TableCell ID="TableCell7" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow6" runat="server"><asp:TableCell ID="TableCell8" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow66" runat="server"><asp:TableCell ID="TableCell67" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink9" Target="_self" NavigateUrl= "~/states/florida_fl.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Florida Movers - FL,IN Miami</asp:HyperLink> </asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow7" runat="server"><asp:TableCell ID="TableCell9" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow8" runat="server"><asp:TableCell ID="TableCell10" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow67" runat="server"><asp:TableCell ID="TableCell68" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink10" Target="_self" NavigateUrl= "~/states/missouri_mo.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Missouri Movers - MO,Vista</asp:HyperLink></asp:TableCell></asp:TableRow>      <asp:TableRow ID="TableRow9" runat="server"><asp:TableCell ID="TableCell11" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow10" runat="server"><asp:TableCell ID="TableCell12" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow68" runat="server"><asp:TableCell ID="TableCell69" runat="server" Font-Size="Small"><asp:HyperLink ID="HyperLink11" Target="_self" NavigateUrl= "~/states/wyoming_wy.aspx" CssClass="LeftMenuLink"  runat="server">>>>> Wyoming Movers - WY,Lincoln</asp:HyperLink></asp:TableCell></asp:TableRow>      <asp:TableRow ID="TableRow11" runat="server"><asp:TableCell ID="TableCell13" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow12" runat="server"><asp:TableCell ID="TableCell14" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow71" runat="server"><asp:TableCell ID="TableCell72" runat="server"></asp:TableCell></asp:TableRow> <asp:TableRow runat="server"><asp:TableCell runat="server" Text="More Services" CssClass="top_left" Font-Size="Small"></asp:TableCell>      </asp:TableRow><asp:TableRow ID="TableRow17" runat="server"><asp:TableCell ID="TableCell19" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow18" runat="server"><asp:TableCell ID="TableCell20" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Find Your Zip Code</a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow19" runat="server"><asp:TableCell ID="TableCell21" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Calculation Distance By ZipCode</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow20" runat="server"><asp:TableCell ID="TableCell22" runat="server"></asp:TableCell></asp:TableRow>   <asp:TableRow ID="TableRow70" runat="server"><asp:TableCell ID="TableCell71" runat="server"></asp:TableCell></asp:TableRow> <asp:TableRow runat="server"><asp:TableCell runat="server" Text="Compaies Login" CssClass="top_left" Font-Size="Small"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow22" runat="server"><asp:TableCell ID="TableCell24" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow23" runat="server"><asp:TableCell ID="TableCell25" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Companies Login</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow24" runat="server"><asp:TableCell ID="TableCell26" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow26" runat="server"><asp:TableCell ID="TableCell28" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow27" runat="server"><asp:TableCell ID="TableCell29" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Lead's Selling</a></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell><asp:TableCell Width="70%" VerticalAlign="Middle"  runat="server" HorizontalAlign="Left"><asp:Table runat="server" HorizontalAlign="Left"><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow VerticalAlign="Middle" runat="server" >               <asp:TableCell VerticalAlign="Middle" runat="server" HorizontalAlign="Left">                              <asp:Image Height="300px" Width="410px" ID="Img_Main_Pic" runat="server" ImageUrl="images/main_picture.jpg"/></asp:TableCell><asp:TableCell   Width="20px" runat="server">&nbsp;&nbsp;&nbsp;&nbsp;</asp:TableCell>                                   <asp:TableCell runat="server" Width="35%"><asp:Table ID="Table4" runat="server"><asp:TableRow ID="TableRow1" runat="server"><asp:TableCell ID="TableCell3" runat="server" Text="More Solutions" CssClass="top_left" Font-Size="Small"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow58" runat="server"><asp:TableCell ID="TableCell60" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow59" runat="server"><asp:TableCell ID="TableCell61" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow25" runat="server"><asp:TableCell ID="TableCell27" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Schools In New Area</a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Prepering Your Family</a ></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow28" runat="server"><asp:TableCell ID="TableCell30" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Moving Your pets</a ></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow29" runat="server"><asp:TableCell ID="TableCell31" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow30" runat="server"><asp:TableCell ID="TableCell32" runat="server"></asp:TableCell></asp:TableRow> <asp:TableRow ID="TableRow31" runat="server"><asp:TableCell ID="TableCell33" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Get A Teps</a ></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow32" runat="server"><asp:TableCell ID="TableCell34" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow33" runat="server"><asp:TableCell ID="TableCell35" runat="server"></asp:TableCell></asp:TableRow> <asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow34" runat="server"><asp:TableCell ID="TableCell36" runat="server"></asp:TableCell></asp:TableRow>        <asp:TableRow runat="server"><asp:TableCell runat="server" Text="Jobing In New Area" CssClass="top_left" Font-Size="Small"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow37" runat="server"><asp:TableCell ID="TableCell39" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Where To Find Job</a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow38" runat="server"><asp:TableCell ID="TableCell40" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Tips On Jobing</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow39" runat="server"><asp:TableCell ID="TableCell41" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow40" runat="server"><asp:TableCell ID="TableCell42" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow51" runat="server"><asp:TableCell ID="TableCell53" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow52" runat="server"><asp:TableCell ID="TableCell54" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Text="Apartment In New Area" CssClass="top_left" Font-Size="Small"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow41" runat="server"><asp:TableCell ID="TableCell43" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow42" runat="server"><asp:TableCell ID="TableCell44" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow63" runat="server"><asp:TableCell ID="TableCell65" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> General Real Estate</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow61" runat="server"><asp:TableCell ID="TableCell63" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow62" runat="server"><asp:TableCell ID="TableCell64" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Were To Find</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow43" runat="server"><asp:TableCell ID="TableCell45" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow44" runat="server"><asp:TableCell ID="TableCell46" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow45" runat="server"><asp:TableCell ID="TableCell47" runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Tips On Apartment</a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow46" runat="server"><asp:TableCell ID="TableCell48" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow47" runat="server"><asp:TableCell ID="TableCell49" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow49" runat="server"><asp:TableCell ID="TableCell51" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow50" runat="server"><asp:TableCell ID="TableCell52" runat="server"></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" ColumnSpan="5">                                             <asp:Table runat="server"><asp:TableRow runat="server"><asp:TableCell runat="server"><asp:Table runat="server"><asp:TableRow ID="TableRow69" runat="server"><asp:TableCell ID="TableCell70" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Text="Preparing 3 Month Before" CssClass="top_left" Font-Size="Small"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> 9 Weeks Before  </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> 4 Weeks Before  </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow48" runat="server"><asp:TableCell ID="TableCell50" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server" Font-Size="Small"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> 1 Week Before  </a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow53" runat="server"><asp:TableCell ID="TableCell55" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow54" runat="server"><asp:TableCell ID="TableCell56" runat="server"></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell>  <asp:TableCell runat="server"><asp:Table ID="Table1" runat="server"><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" Text="Packaging Your Contention" CssClass="top_left" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> In Far Date </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> In Middle Date </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> In Close Date   </a></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell>  <asp:TableCell runat="server"><asp:Table ID="Table2" runat="server"><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" Text="Relocation Yourself" CssClass="top_left" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="http://www.moving.org" class="LeftMenuLink">>>>> Moving.org </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="http://www.bw-worlds.com" class="LeftMenuLink">>>>> Bw-worlds.com  </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="moving_companies/moving_companies.aspx" class="LeftMenuLink">>>>> Tips On Relocation  </a></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell>  <asp:TableCell runat="server"><asp:Table ID="Table3" runat="server"><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" Text="Related Links" CssClass="top_left" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="http://www.123movers.com" class="LeftMenuLink">>>>> 123movers.com  </a></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="http://www.vanlines.com" class="LeftMenuLink">>>>> Vanlines.com  </a></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow55" runat="server"><asp:TableCell ID="TableCell57" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow ID="TableRow56" runat="server"><asp:TableCell ID="TableCell58" runat="server"></asp:TableCell></asp:TableRow><asp:TableRow runat="server"><asp:TableCell Font-Size="Small" runat="server"><a href="http://www.onlinemovers.net" class="LeftMenuLink">>>>> Onlinemovers.net  </a></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell>              </asp:TableRow>                                                                                      </asp:Table></asp:TableCell></asp:TableRow></asp:Table></asp:TableCell></asp:TableRow> <asp:TableRow><asp:TableCell ColumnSpan="5"><hr  style = "color: #000099;"/></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow ID="lines_of_counties" Width="100%" runat="server"><asp:TableCell ID = "counties_cell" Width="100%" ColumnSpan="3" runat="server">     <asp:Table runat="server" ID = "tbl_cnt" Width="100%" BorderWidth="0" BorderColor="black"><asp:TableRow Width="100%"><asp:TableCell HorizontalAlign="Center" ColumnSpan="8" Width="100%"><div align="center" ><font color="#000099" size="-1"><u><b>Select State</b></u></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>                   </asp:TableCell></asp:TableRow></asp:Table></asp:TableCell>  </asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell ColumnSpan="5"><hr  style = "color: #000099;"/></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell ColumnSpan="5" HorizontalAlign="Center"><asp:Label runat="server" Font-Size="12px"  ID = "linfo" Font-Bold="true" Font-Underline="true" ForeColor="#000099">Welcome</asp:Label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</asp:TableCell></asp:TableRow><asp:TableRow>        <asp:TableCell ColumnSpan="5" BorderWidth="0"   BorderColor="white"><asp:Label runat="server" Font-Size="12px" >
         Now you are moving from your old place,you search moving companies for long distance moving or even for local moving comanies. You must think on every task before doing 
         your relocation in new place.If that is Not your first time in mission of moving to a new place&nbsp;, &nbsp;you should know that it's not easy as it is sound. Ar-movers.com bring the 
         connection to almost any solution you may need.Task of packaging or find a new job is quite hard, But ther are many tips in ower site. The great task in moving is to find a 
         reliable companies that give you proper service and please you.Ower site consist from many modols, each of them give you the right solution.In short we will explain each of them. 
         the modol of <asp:HyperLink ID="londg_distance_movers" runat="server" Target="_self" NavigateUrl="~/moving_companies/moving_companies.aspx" CssClass="button">long distance movers</asp:HyperLink> appropriate 
         for long distance as it is sound, for example  you are located in state of California in county of orange and  know you decide on relocation in new nork.we will give you the connection to top ten 
         moving companies that give the best service you can get. be sure it not easy task to find movers that give you the right service, specialy for long distance moving. the second modol is for<asp:HyperLink ID="local_distance_movers" runat="server" Target="_self" NavigateUrl="~/moving_companies/moving_companies.aspx" CssClass="button">local distance movers</asp:HyperLink> which specialize in 
         connection of reliable local moving companies , for local destance area . Additional to great service, you save a lot of time in searching for moving companies . The next modol in our site is for <asp:HyperLink ID="International_moving" runat="server" Target="_self" NavigateUrl="~/internaional_moving/internaional_moving.aspx" CssClass="button">International moving</asp:HyperLink>. If you are moving
         to another state for example, to france or else, you should choice that modol, but don't forget our guides and tips. Now we continue to modol of <asp:HyperLink ID="auto_transportaion" runat="server" Target="_self" NavigateUrl="~/auto_transport/auto_transport.aspx" CssClass="button">auto transportaion</asp:HyperLink>,
         as you know, when you are leaving to another place, your car comes with you, no matter what you decide about your car, sell it or move it, we here to cover the case of moving it by connect you to companies that deal with moving cars. 
         Movre solutions are avilable in our site in related links and in more modols. We here for you, and we care for the best service you can get, please recommend us and enjoy our service.         </asp:Label></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell ColumnSpan="5"><hr  style = "color: #000099;"/></asp:TableCell></asp:TableRow><asp:TableRow><asp:TableCell ColumnSpan="5" HorizontalAlign="center">         
         | <asp:HyperLink ID="License_agreement" runat="server" CssClass="terms" Target="_self" NavigateUrl="~/license_agreement.aspx">License agreement</asp:HyperLink> | <asp:HyperLink ID="HyperLink2" runat="server" CssClass="terms" Target="_self" NavigateUrl="~/Contact_us.aspx">Contact us</asp:HyperLink> | <asp:HyperLink ID="HyperLink3" runat="server" CssClass="terms" Target="_self" NavigateUrl="~/index.aspx">AR-movers home page</asp:HyperLink> | <asp:HyperLink ID="HyperLink1" runat="server" CssClass="terms" Target="_self" NavigateUrl="~/Advertisement_services.aspx">Advertisement services</asp:HyperLink> |</asp:TableCell>     </asp:TableRow>      <asp:TableRow><asp:TableCell ColumnSpan="5" HorizontalAlign="center" Font-Size ="Small">&copy; 2007-<%Response.Write(Year(Now))%> -  All right reserved to ar-movers.com , Enterprise solutions.</asp:TableCell>     </asp:TableRow>              </asp:Table>        </form>  </body></html>
and the error here is

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: BC30002: Type 'System.Web.Script.Services.ScriptService' is not defined.

Source Error:

Line 12: ' To allow this Web Service to be called from script, using ASP.NET AJAX, 
Line 13: ' uncomment the following line.Line 14: <System.Web.Script.Services.ScriptService()> _ Line 15: <WebService(Namespace:="http://tempuri.org/")> _
Line 16: <WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _

Thanks in advance for any kind of help 


Viewing all articles
Browse latest Browse all 5678

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>