Tagged Questions
0
votes
3answers
48 views
How do I reference a CSS file on my ASPX page?
I added the following to my page:
<head id="Head1" runat="server">
<link href="Content/Site.css" rel="stylesheet"/>
<title></title>
</head>
And ...
0
votes
1answer
36 views
Why doesn’t add a div bottom of another div in sending email?
I'd want add a div to the bottom of another div. I have tested this code and it works fine.
<div style="position: relative; width: 200px; height: 150px;">
<div style="position: absolute; ...
0
votes
1answer
43 views
text field to label with CSS
I have a text field I want to show as a label.
This is the CSS I use:
.txtToLbl{
color:Black;
border: 0px;
background-color: #FFFFFF;
/*text-align: ...
0
votes
3answers
39 views
Add css class from code behind using literal control
I am adding a css class to my aspx page from c# code behind.
here's how I am going around
public void OnPreRenderComplete(EventArgs e)
{
Page.Header.Controls.Add(new LiteralControl("<link ...
1
vote
1answer
20 views
IE bug asp:textbox after delete and tab changes the input display to absolute 0,0
So I have the weirdest bug, I have a form with several asp:textbox controls if I write the code and make a tab nothing happens everything stays normal but if for any reason I delete some of the text ...
0
votes
1answer
56 views
how to make image stay in it's own place on the mouse over [closed]
please help me.I had tried really hard for it but nothing achived.I want the image to stay in its own place even when the mouse goes on it,I mean when the mouse moves from the relevent <li> to ...
-1
votes
3answers
39 views
How to align colon vertically using css?
I want to align ' : ' vertically, how to do that?
<td>
<b>ID</b>:<asp:Label ID="ID0" runat="server" Text='<%# Bind("ID") ...
1
vote
0answers
43 views
Call script or css style in the update panel
I am using a script on a page due to which the style of dropdown , checkbox and textbox get changes, but if i put dropdown or any other tool inside the updatepanel the script of that tool is not ...
0
votes
0answers
13 views
Ajax TabContainer change body background color
Hi I am trying to change the style of tab body in TabContainer, without changing any other style. So basically I am trying to change the default style of TabContainer ie ajax__tab_xp so this i have ...
-1
votes
0answers
24 views
fonts showing very small in iphone for mvc 4 application in twitter bootstrap
I am developing mvc 4 application with twitter bootstrap. I run this application in all browsers with varying widths and emulators. It renders me the content and all controls with perfect fonts. Even ...
0
votes
1answer
16 views
Styling with PopupControlExtender
So I have a table, with a row (tr) that has a AJAX toolkit PopupControlExtender. Here is the code -
<table id="fixedHeaderTable" border="1" cellspacing="0" runat="server">
<tr ...
1
vote
1answer
47 views
Asp.net Button component doesn't work under Twitter-Bootstrap theme
I've been using twitter-bootstrap for my asp.net website theme and I've ran into some trouble when trying to make a simple button execute an event. The button is an asp component, from what I've read ...
0
votes
1answer
25 views
What are the fewest jquery-ui css files I need to reference to use the Tabs widget?
I'm confused about just which jquery css files I need to reference in my asp.net site. Should I use just "jquery.ui..css" (such as "jquery.ui.tabs.css") if only uisng one jQuery-UI widget (as opposed ...
0
votes
1answer
16 views
GridView Centering Issues
How can I center the text of the rows of an <asp:GridView /> that gets populated at run-time?
I have tried RowStyle-HorizontalAlign="Center" and similar things that I have found in this site to ...
0
votes
1answer
27 views
Razor view with CSS ignore <p></p>
I have a problem with CSS and Razor view that i can't explain. In my project i have two views with same structure and use the same CSS. In one view all the paragraphes are OK everything work well but ...
0
votes
4answers
49 views
Why can't I apply css on textboxes in asp.net?
I have a problem with applying css on textboxes in asp.net!!
Here is my textbox:
<asp:TextBox ID="TextBox1" CssClass="textbox" runat="server" Height="22px" Width="128px"
...
0
votes
0answers
11 views
Set Css Class to Dynamic Rows in ASP.Net GridView Control with TextBoxes
I used this example about Adding Dynamic Rows in ASP.Net GridView Control with TextBoxes in my .net application. now i need to add css style to TextBoxes in this GridView. I have added ...
1
vote
4answers
48 views
CSS won't apply from Master Page
For the life of me I cannot figure out why the CSS I am trying to apply won't work and hoping someone can help me out.
Index.Master
<%@ Master Language="C#" AutoEventWireup="true" ...
0
votes
1answer
22 views
Adding align property in CSS2.0
I have a table , and the style for one particular td is
<td style="vertical-align: middle;align: center!important; height: 200px; background-color: #ffffff;text-align: ...
1
vote
2answers
30 views
ASP.net controls not obeying CSS?
Why is is that Block 1 doesn't render the expected styling and Block 2 does?
CSS
.test
{
height:3.85in;
width: 2.625in;
border: 10px solid blue;
padding-right:.25in;
...
0
votes
2answers
40 views
Dynamically adding pictures inside div
I've got a drop down list which is going to dynamically add image elements inside of a div with a class name of DrugNameCard and an id of testDiv. With all of the attempts below, the HTML isn't ...
0
votes
0answers
23 views
Responsive grid layout in repeater control
Hi below is my screenshot,(I am using Repeater control to display items from database)
but instead of this i want below grid layout without spacing between two items:
can anyone suggest any css ...
0
votes
2answers
17 views
resize div width down based on the amount of data contained within repeater and up to a max-width
I have a repeater wrapped in a div which displays results as horizontal text. The div is set to a maximum width of 450px which causes the results to wrap onto the next line which is perfect, but the ...
0
votes
1answer
27 views
Having trouble calling aspx from Ext JS 4.2
I am trying to make a call to an ASPX url; however, the return keeps coming back as a failure.
I have used this url in other programming projects, but this is my first time using it with Ext JS. I ...
1
vote
0answers
40 views
bind combobox column in datagridview
I have a combobox which contain 4 elements "REF" "DF" "OVEN" "Chest cooler", this combobox is bind with sql.
Now I want when I select "REF" the all modal of Ref show in grid combo column when I ...
0
votes
2answers
37 views
mouseenter in jquery is causing abnormal behaviour
I am trying to make the mouseenter and leave event in jquery work but there nothing seems to work. mouseenter works if I drag the mouse on an image without traversing other area on browser. The entire ...
0
votes
2answers
33 views
How to highlight active page in a masterpage menu?
I have a menu inside a masterpage (in a ASP.NET Web site), and i want to highlight active page in masterpage menu and submenus.
HTML:
<ul id="nav" class="sf-menu">
<li ...
0
votes
0answers
50 views
jquery mouseenter is not working
I am trying to achieve hover effect I tried this code but not working
$('.real').parent().on('mouseenter',function() {
var href = $(this).attr('href');
var top = ...
1
vote
2answers
57 views
hover effect creates flickering
I am trying to display options on an image on hover but when I hover the displayed options keeps flickering
$('a').hover(function(event) {
var href = $(this).attr('href');
var ...
0
votes
1answer
27 views
Toggle between different langauge
I am working on a website in asp.net , and i want to give a radio box so user can toggle between urdu and english keyboards. I need help in providing urdu keyboard in asp.net. I want to embed a urdu ...
0
votes
2answers
25 views
clipped text works in Chrome but not in IE9?
I have a bit of code that works exactly as required in Chrome, but not in IE9.
My objective is to have a grid cell that clips it's text according to a maximum column width, does not wrap the text and ...
-2
votes
0answers
46 views
How to CSS Style Disable ASP.Net Button
I have a styled ASP button that works fine. What I want is when the user clicks a button to disable all other buttons that I choose.
I disable the buttons but I want to change the color of the ...
0
votes
0answers
31 views
ASP.Net website publishing issues
I have an asp.net website that I created in Visual Studio 2010 and I am trying to upload via iPage. However, all I get when navigating to the website is the HTML markup in the browser window. I ...
-2
votes
3answers
47 views
Apply css effect after link is clicked?
How can I apply a specific css scheme if the nav link clicked is active?
I tried many options a:active, a:selection, a:link - none of them work!
Basically, the nav link for the page clicked should ...
0
votes
1answer
34 views
How to create multipe column on ajax auto complete?
I create a table for searching items on ajax auto complete, I want to design like that(Table-1):
There is my web service code:
[WebMethod]
public object[] GetResult(string prefixText, int ...
0
votes
2answers
36 views
ASP.NET C# Login CSS error
I'm creating a Login page with C# ASP.net, After i apply this code
<system.web>
<authorization>
<allow users="?"/>
</authorization>
...
0
votes
0answers
41 views
Html.RadioButtonFor without radiobutton
I want to a form with radiobuttons in it.
Here you can see what I mean:
As you can see you have the options "Graphic Design, Photo Design, ..".
What I want to do is when you click on one of them, ...
0
votes
2answers
39 views
Make a DIV not be shown outside it's container
I'm making a very basic animation with JQuery. Basically what I have is a DIV in the size of 60% width, 80% height and it contains a manual. My goal is that when you go through pages in the manual, ...
0
votes
1answer
36 views
Increase div height to fit ajax accordion
I have the following layout on a webpage
<asp:panel id="overview_pnl">
<asp:panel id="top_row" CssClass="overviewRows">
<ajaxToolKit:Accordion>
...
1
vote
3answers
40 views
Building a collapsible and expandable panel in asp.net
I have the following code for two panels:
<asp:Panel runat="server" class="sectionLabels">
<asp:Label runat="server" Text="DetailsForm"></asp:Label>
</asp:Panel>
...
-1
votes
0answers
33 views
Resize gridview controls when form resizes
I have a Grid View With multiple drop down list inside a single cell in the Item Template.
When the Form is re-sized all the drop down list moves out of place to second and third row and doesn't stay ...
0
votes
0answers
28 views
CSS applied to aspx page working in firefox, but not IE. Only the style of 1 button doesn't work. Any ideas?
this is the CSS for the button....
.button:last-of-type,.button:visited, .button:hover, .button:active, .button:active {
background: #7C8C99;
color: #FFFFFF;
display: inline-block;
...
0
votes
0answers
34 views
CSS and JS-files repeating themselves
I have a major problem with my current build. My css and js-files are repeating themselves. Its only one GET from the webserver but the webserver is serving files that are exactly twice as big in size ...
0
votes
2answers
49 views
Styling DropDownList ASP.NET
Hi I am trying to make my DropDownList like this in my ASP.NET web application.
I cant't use the select tag because I am already bounded some data to the DropDownList.
Basically I am trying to ...
0
votes
3answers
48 views
div height not expanding with browser
I have a content editable div inside another div. The width expands when IE is expanded, but height is not expanding
I set a min-height of 300px because i want it to be 300 px height at the time of ...
0
votes
1answer
64 views
Css validation do not work in asp net
i cant use css validation class inside asp.net controls but all other css design works correctly for example i just need to add class="validate[required]" to make a control validation in html but the ...
0
votes
2answers
20 views
Table Column Misalignment
Please consider the following (http://jsfiddle.net/HaLGr/11/):
.head_row {
color: #FFFFFF;
background-color: #5D7B9D;
}
.row_one {
font-size: 12px;
}
.row_two {
font-size: 12px;
...
0
votes
0answers
42 views
How can I determine which element's attribute needs to be modified?
I am trying to visually clean up the appearance of a legacy asp.net page; it seems that something has a border-left and border-right property that I need to get rid of, but I can't determine which ...
1
vote
2answers
55 views
embedding fonts in asp.net
I am trying to embed some fonts via a CSS file for my asp.net website but without success.
Here is the code for the CSS:
@font-face {
font-family: Segoe UI;
src: url('SEGOEUI.ttf');
}
...
0
votes
1answer
43 views
GridView Header Fixed and column Freezing
I have browsed in allmost all the sites but didnt get proper solution. My question is on Fixing Grid View header and freezing the column. Most of the sites say that the browser doesnt supports, well i ...




