I have been trying to use ajax in my asp .net website developed in 3.5 sp1 2008! The problem is I can see tool kit controls in my tool box but i can not use the controls. like i was using the text box watermark effect but when i run the website the text-box does not show effect and there is no option in text box to add extender. there is only remove extender option. I have code:
[Code]....I am seeing an empty text box watermark css is not applying and the text type first name here is also not getting displayed insde the text box.
I included a Textbox watermark in a webpage and uploaded it to my server. I can't see the watermark on the textbox hence I get an error ASP.NET Ajax client-side framework failed to load.
I have a page that display like a print pre-view. It shows the watermark in the background. But when I print it, it doesn't include the watermark. I know in IE7 you can change your IE settings to make it print the water mark but in IE8 you can't do that. Is there another way to print my water mark out? Here's that part of the code:
i have VS2010Pro, i installed Ajax3.5 because im working on .Net3.5 framework. i created a registration form, after i applied Scripmanager, then i clicked on Textbox & select Add Extender, i use Watermark extender. i write all the values... wtever it is in ASP.net AJAX website tutorial, after it i run to project ....there is no watermark on the textbox. i have IE8 & Firefox browser but both not showing the watermark here is my code that i applied on textbox:
When data is stored in my database as Ex: normal, and the data that the Combox is bound to has Ex: Normal, the mismatch in case is throwing an error when the form opens. The CaseSensivity setting on the ComboBox has no effect on this and it was the same with the asp List Box. We sometimes have data imported that has incorrect case and causes this problem.
I've written a nice page with accordion element in it, but I've found that on some browsers, with some setting- the accordion won'trespond to clicking on it. So, what I get is an accordion that shows headers, but clicking on them won't open the data.What I'm guessing is that the sliding effect is blocked for some reason.What I'm trying to achieve are this two:1. Cancel the sliding effect so the data will show right-away, thus answering the problem caused by some browsers2. Cancel It only when the page detects that there might be a problem. (I'm not quite sure what setting I am looking for).Obviously, 1 is quite more urgent. If 2 is not solved I geuss I can use 1 for all the cases, but still- If anyone could find answer for 1- that would be great.
My problem is that I want to display a watermark on password field i..e Enter Password. But it is appearing as **********. I have seen it on facebook that when i see it first time text is appearing 'Enter Password' and when i enter my password it appears as *****. I know that with some dirty workarounds I can fix it. Is there any good solution for this here is the code which I am using
I have 2 "Updatepanel" controls. Each contains a textbox linked to a "TextBoxWatermarkExtender", and a button. When I click on one of the buttons without to enter any text, all the watermark text disappear on BOTH updatepanel when they should remain visible.
[code]...
How can I avoid the waternmark text to disappear when I click on the button?
How can I achieve hover effect for the ajaxtoolkit combobox. I just need an outline for the entire combo i.e. outline for combo-textbox and combo-button when hovering over the combobox otherwise it should return to the normal outline color.
I could only get the hovering effect for combo-textbox alone and that too an outline creates at outer of the existing combo-textbox outline.
I have a question about watermark extender. I used it to apply to a password textbox and confirm password textbox with password text mode. I found some site recomending using picture so that the word "Password" and "Confirm Password" will be shown in the textbox. For some reason, in the confirm password textbox, the picture doesn't show correctly. It is like some part is omitted. I try to check on my local computer and it was fine. But when I check on my computer at home. I got that weird problem. Why is it like that?
When I clicked Header area, Content opened and have "Slide effect". but when I clicked Header's "ImageButton", it do something at codebehidn, Content opened but no "Slide effect". I want slide effect, how to do it,
[aspx] <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <AjaxToolkit:Accordion ID="AccordionMenu" runat="server" SelectedIndex="0" HeaderCssClass="accordionHeader" ContentCssClass="accordionContent" AutoSize="None" FadeTransitions="true" Width="200px" SuppressHeaderPostbacks="false"> <Panes> <AjaxToolkit:AccordionPane ID="AccordionPane1" runat="server"> <Header>Pane 1 <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/images/expand.jpg" /> </Header> <Content> The Details of Item1. </Content> </AjaxToolkit:AccordionPane> <AjaxToolkit:AccordionPane ID="AccordionPane2" runat="server"> <Header>Pane 2 <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/images/expand.jpg" /> </Header> <Content> The Details of Item2. </Content> </AjaxToolkit:AccordionPane> </Panes> </AjaxToolkit:Accordion> <p></p> <asp:Label ID="Label1" runat="server" /> </ContentTemplate> </asp:UpdatePanel> [.vb] Protected Sub ImageButton1_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton1.Click Me.Label1.Text = "[Call Header Function 1]" End Sub Protected Sub ImageButton2_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton2.Click Me.Label1.Text = "[Call Header Function 2]" End Sub
there are animation effect to controls onload , onmouseover, onclick ...... but i can't find method to give animation effect to a label ontextchanged .
how to do this. I have asp.net page left side tab container each tab panel have options to procede a quotation when clicking radio buttons or check boxes right side panel gives quotation, and change total price on label.
I could give animationextender for each radiobuttons or check box control and give animation effect to label.
but this is a pain, any body know how to write code to give animation effect atleast change color of label text with out using 10 or 15 animation extenders.
I'm trying to use the TextBoxWatermarkExtender with MaskedEditExtender/Validator and have found a bug (I think).
In the textbox I enter an invalid date such as 55-55-5555 and exits the textbox. I would then expect the watermark to be shown, but it doesn't. Instead the prompchar is shown (like __-__-____).
If I simply give focus to the textbox and then another control, the watermark is shown.
Is there a workaround such as manually force the TextBoxWatermarkExtender to update.
I'm not the best with javascript, I tried to call focus() and blur() on the textbox in the textbox's onBlur event using window.setTimeout. This works in Firefox, but not IE8, also there has to be a better way I think :-)