Showing posts with label playing. Show all posts
Showing posts with label playing. Show all posts

Wednesday, March 28, 2012

Installer Message

I had the .net framework installed on my computer and then installed Visual Studio 2005 and have been playing with ASP.net 2.0 for a while. Now that I downloaded the AJAX tool and try to install it I am getting a message that says I do not have the .net framework and AJAX cannot be installed to compatibility errors. I verified?in?my?programs?list?that?.net?framework?is?there?and?I?have?the?latest?(3.0)?all?the?way?back?to?1.0?so?I'm?not?sure?what's?going?on.?The?only?thing?I?can?think?of?is?that?Admin
privies are required to install b/c registries are being altered or something (I don't have admin). Normally when I try to use a windows installer and that happens I get an "Administrative Rights Required" message; not a compatibility message...Any thoughts?

Thanks!

JoeI had Tech Support give me admin privileges and the AJAX extensions installed without a problem. Apparently the installer was getting confused...it normally reports that sort of thing when Admin is required on an install.

Saturday, March 24, 2012

Invalid Arguement in AutoComplete Extender

Hi,

I was playing with the autoextender complete functionality and when i start using the backspace the list width starts shriking...if this is done for couple of times.(around 10 times) in my case this list becomes a thin line and then autocomplete exenteder throws "Invalid Arguement Error"

Can someone tell me how to fix this error.

Regards,
Vishwanath

I testedasp:AutoCompleteExtender?with?Ajax?Futures?Dec?CTPin?my?PC?and?found it?worked?fine.
Here?are?some?sample?codes?for?your?reference.
<div>
<asp:UpdatePanel ID="upnlCallWebService" runat="server">
<ContentTemplate>
<asp:TextBox runat="server" ID="txtClientName" MaxLength="50" Columns="50"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtenderClent" ServicePath="~/Web Services/WebService.asmx"
ServiceMethod="HelloWorld" MinimumPrefixLength="1" TargetControlID="txtClientName" runat="server">
</asp:AutoCompleteExtender>
<asp:Button ID="btnCallWebService" runat="server" Text="Call WebService" OnClick="btnCallWebService_Click" />
<asp:Label ID="lblWebService" runat="server" Text="Web Service"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnCallWebService" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
</div>
Can you post some codes here if you have the exception message"Invalid Arguement Error" ?
Wish the sample codes can help you.