AJAX :: Apply Control For Application?
Apr 8, 2010I want to know, Can we apply ajax control for application(not web application!!) ?
View 1 RepliesI want to know, Can we apply ajax control for application(not web application!!) ?
View 1 RepliesIam new to Ajax Asp.Net
Iam facing a problem in ModalPopupExtender, i have made a usercontrol to show a popup frame and made popheader for dragging the header. but iam unable to find the panel id for PopupDragHandleControlID. can anyone tell me how to do. user control
[Code]....
how to highlight todays date in calender extender control popus and how to apply background color to every cell in calender control
and how to apply css
[Code]....
[Code]....
I am new to Mobile Application.I have developed one form using Mobile Tag.But i am getting problem in applying exteral stylesheet. However it's working easy in inline stylesheet. I have One Muc of stylesheet in a style.css Now i want to apply this CSS in a My web form How i do it ?? r there any application availble to see it ? how to apply exteranl stylesheet in a mobile application. i have google it but not get any solution.
View 5 RepliesI want to customize the ajax editor control in my Web application .I followed the following tutorial:
http://www.asp.net/ajax/tutorials/how-do-i-use-the-html-editor-control--cs
but I get the error
"the type or namespace mycontrols could not be found"...
App_Code:
[Code]....
How exactly do I style this control?
I have tried this but it doesn't work.
<asp:FileUpload id="upload_tb" runat="server" />
#upload_tb
{
width: 500px;
}
Also how can I style the browse button that comes with this control? If it is not possible are there other alternatives?
Edit:
I checked the generated source and asp.net gives the control this id ctl00_main_content_upload_tb
I changed the CSS to
#ctl00_main_content_upload_tb
{
width: 500px;
}
but it does not stretch the control. It adds padding to the right of the control.
this will work
[Code]....
do I miss anything should do but I didn't
I have a single level horizontal oriented menu control in my asp.net 3.5 (C#) web app.
I wanted to know is there any way by which I can apply different CSS to asp.net menu controls's first and last items?
Actually, I want to apply different background images to first and last items other than middle menu items on hover and selected.
I implemented a lot of ASP.NET controls inheriting controls from existing control library. My problem is that I can't use existing library themes/ skin files for skinning my controls. Is there a way to use existing skin files in inherited controls? Changing parts or renaming skin files is not an option. I could read data from skin file and then apply it to control programatically. Is there some kind of API for reading skin files?
View 1 RepliesI've got a Login control on a page, I'm trying to style the hyperlinks used in the control (e.g. forgotten password link). I've got a theme containing a stylesheet where I've defined link classes. I set the CssClass property of the HyperLinkStyle property of the control, but it has no effect. All other areas in my page where I use stylesheet classes it works, except for this login control.
View 1 RepliesI want to apply CSS on FileUpload Brwose button.
don't refer to this link: [URL]
Say I am creating a Textbox in the codebehind of a page like this:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
TextBox test = new TextBox();
test.SkinkId = "MySkin";
placeHolder.Controls.Add(test);
}
and in my skin file I have this:
<asp:TextBox
runat="server"
SkinId = "MySkin"
Width="400"
/>
Why is the skin not beeing applied to the control. If i declare the control in my aspx page it works ok, but if I try to do it programatically it does not work...
i want to know how to apply timer control on asp.net web pages.in my web application i m having assessment pages, where i am retrieving question and answer from database.everything is working fine but i want some kind of restrictions, like Assessment Time(20 Minute) so user can attempt question for specified time only.there should be a time limit.
View 3 RepliesI have the following LinkButton control.
[Code]....
why the CSS does not work onthe LinkButton?
I am displaying data on a grid ..I want to show some watermark kind of thing on that grid (Copy right related information as water mark)
how to acheive this on a gridview.
I am using asp.net menu control with sitemap. I placed this control in master page. I want to apply style sheet for that menu control. Can any one tell how to do that.
[code]
I need to create custom control. It should be able to use diffrent templates in runtime. I mean that from code behind I need to change template path. How can I do it?
View 3 RepliesI'm trying to applicate a skin in UserControl but That doesn't work.
In the project I put in the folder App_Theme 2 folders :
- FirstTheme: I have inside Images Folder and and a stylsheets (Personnalisation.css)...It's a project's Theme.
- Skins : here we have default.skin
I created the folder UserControls in the project and putted inside 2 users controls.
In the default.skin I wrote this code :
<asp:TextBox runat="server" Width="250px" SkinID="textBoxSkin"/>
And when I'm In the TextBox on my usercontrol I can't see in the SkinID property the textBoxSkin. I insert in the code SkinID="textBoxSkin" but nothing happened.
I have several regular expression validators in my site. Some validate postal codes, others validate phone numbers and still others email addresses or something else. What I would like to do is be able to specify a SkinID for regex validators that have a more specific purpose (e.g. postal code validation), but also have the default definition for regex validators apply as well.
So, I could specify some properties that apply to ALL regex validators and then some properties that are specific to certain regex validators (which I would specify by SkinID). Is this possible, or does only 1 .skin file definition apply?
I want to apply a key press handler to a User Control. So there is no <body> there. where I should place onkeypress="keyPressHandler(event)"?
View 35 Repliesbelow is my code.
[code]...
i want to apply style to this calender but i dont know how to do this....
I Apply SSL Certificate on my web but due to this Activex Control not load. While i remove my SSL Certificate then Activex Control Show.
View 1 Repliesi have 9 tabs in TabContainer
i need to apply individual styles for every tabs. but TabContainer theam is working for all tabs
i have created 9 theams and assigned for every tabpanel. but it's not working..
how can i apply themas for individual tabpanel in TabContainer.
URL....I have written a script to check all check boxes in a grid view, I would like to apply this script for child grid view grdchild how can i add this script
<script type="text/javascript">
function checkAllBoxes() {
//get total number of rows in the gridview and do whatever
//you want with it..just grabbing it just cause
var totalChkBoxes = parseInt('<%= this.grdchild.Rows.Count %>');
var gvControl = document.getElementById('<%= this.grdchild.ClientID %>');
[code]....
How i can use update progress control in my application?
View 2 Replies