AJAX :: Can't Make A Button Round Cornered Using RoundedCornersExtender
Feb 9, 2011[Code]....
Can't make a button round cornered using RoundedCornersExtender
[Code]....
Can't make a button round cornered using RoundedCornersExtender
how to make the Rounded number ?
Example : 3341.48 to 3342.00
Why does Application_AuthenticateRequest make so many round trips before actually loading a page. I've noticed that at times it will process the same logic 10 or more times before actually loading a single page?
I don't understand why this is happening, and it makes me worry about excessive & unnecessary performance loads.
I make a panel rund corner using Ajaxtoolkit roundcorner. It works fine Now I use CSS file with this panel but roun corner do not work. Is it possible make Ajaxtoolkit working with CSS?
View 12 RepliesI'm trying to use the AJAX "RoundedCornersExtender" control on a <div>. I've assigned an "id" to the div....so, my code looks like this:
HTML Code:
<div id="headerLogo">
For the TargetControlID of the RoundedCornersExtender, I've given it "headerLogo". However, when I run the app, I get the following error:
Code:
"The TargetControlID of 'RoundedCornersExtender1' is not valid. A control with ID 'logoHeader' could not be found." My guess is that the "id" for the div is designated as a CSS identification. If this is the case, then how do I assign the <div> to the AJAX control?
I am using asp:menu control to display horizontal menu.I need to display tabs with rounded top corners.
View 4 RepliesI have a panel that uses the RoundedConersExtender to round the corners on the border around the panel. It was working fine in IE7 but now in IE8 the top and bottom seem to be separated. I looked through previous questions and it seems that this was a problem with Firefox as well but no solution. Does anyone know a workaround other than using compatibility mode?
View 2 RepliesIīm testing roundedcornersextender and it donīt work.I tryied round some controls (panel, div and textbox) without success.Am I doing something wrong?
See the aspx code:
[Code]...
Is it possible to set border width and border style for RoundedCornersExtender ? It does not allow me to use CSS
This is what I have:
Code:
<cc1:RoundedCornersExtender ID="RoundedCornersExtender5" runat="server" TargetControlID="panel15" Radius="4" BorderColor="Gray" Corners="All" />
I have recently updated ajax control toolkit from 30512 to 30930 (same applies to latest version of ASP.Net Ajax Library) and came across a reproducable problem.For a long time I used to have a control with ModalPopupExtender & RoundedCornersExtender which was placed inside of an UpdatePanel and everything worked great up until recently.
Now I'm getting "Microsoft JScript runtime error:Sys.InvalidOperationException:
Two components with the same id 'rce' can't be added to the application." during an async postback.Click on button "Wait" and error comes up every time.
[Code]...
I'm trying to calculate a customer tax.
[Code]....
I really nead any appropriate function to fix it.
I would like to make a custom accordion, in which I have 2 panes, but where you couldn't open the second one until you clicked a validation button in the first one that would open the second...
I tried to just make a button that would hide the first pane but I cant get to make it work.
[Code]....
[Code]....
i make some button, i want it just work at 12 am only but, the user can change their time on they pc , how to set the time is server time only
View 2 RepliesBasically I am using a ModalPopUpExtender and it works fine, except that the OK button has an OnClick event that only fires when it is clicked for the 2nd time.. obviously i can progress with populating my OnClick event method for later on - its just annoying that a user has to click my button then ok in the pop up twice before they can get their intended result!
View 4 RepliesFollowing is the sample code.. I cannot find any rounded corners for the table. ..
I can't fix the erro
<cc1:roundedcornersextender id="rce" runat="server" targetcontrolid="tbl"
radius="10" corners="All" />
<table id="tbl" runat="server" style="border: medium solid #0000FF; width: 41%;">
[code]...
How to make a link button visible after another button has been clicked in asp.net(vb) in button_click()
it says error as "Object reference not set to an instance of an object."
i've done this in my code
Protected Sub InsertButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim receipt As LinkButton = FormView1.FindControl("LinkButton1") [code]....
i want to round g value to 100,200,300 from 169,278,325.i'm trying to do it by getting the first letter and multiply with 100 like that.for example
from this i ll take 1 and multiply with hundred.my Question is
1000,10000 also i should do the same.dont know how to do it.
i am not good at javascript, but trying to implement or google up a function that would only allow characters in a textbox to have
1. only numeric characters
2. 2 decimal places.
I got this online, but it slices the 3rd decimal, i want it to allow only 2 decimals, any pointers ?
[URL]
I have integer 363 for example.
Any method to make it 360 or 365?
tried the following:
public void UpdatePlayer(int id)
{
Player player = new Player() {ID = id};
player.Password = "12";
Entities.Players.Attach(player);
Entities.SaveChanges();
}
No change at the db.
How do round a number say 83.3 double to 84 integer
View 4 RepliesI'm trying to get my decimals to display with four decimal places. The DB rounds my number to 4 decimal places, but it returns the number with trailing 0s (due to the decimal precision of the field), so something like 9.45670000. Then, when I do this:
string.Format("{0:#,#.####}", decimalValue);
The output I get on the page is 9.4567, which is what I want.
However, if the number returned from DB is 9.45600000, the output after doing the format is 9.456
But what I need to display is 9.4560
How do I format my decimal, so that the number of decimal places is always four?
UPDATE: Also, is it possible to use a variable (instead of .0000) if I wanted the number of decimal places to be determined dynamically?
i want to round the corner of top and bottom of asp.net menu.i have done this by adding chiditem with blank name and set image but its not showing properly on all major browser.
View 2 RepliesIf I disable javascript and cookies, [URL] detects that cookies are disabled without a redirect. If you click the cart link, there's only a get on the cart page.
I'm guessing [URL] is most likely not using ASP.NET, but how would you accomplish detecting disabled cookies using ASP.NET without the use of javascript and redirecting? Is it possible to detect if cookies are disabled in one round trip?
I am creating a search results page in C# in an ASP.NET 1.1 page. In my data layer I have a DataSet that stores the result of a plain old ADO.NET stored procedure call. The DataSet has two DataTables and I'm using a DataVIew to filter and sort the columns.
I only want to fill the dataset once, and then work on the DataTables and derived DataView until the page is unloaded. How best should I cache the DataSet in my DAL so that it is filled only PageLoad? Do i put it in a Cache object, a static member variable, a property...