Tagged Questions
1
vote
1answer
36 views
Validate uploaded file as image and then get the dimensions of it
I want to upload an image file to FTP server, so I have an AsyncFileUpload control on asp.net page. I am using following code to get the type of AsyncFileUpload1.PostedFile and then trying to get the ...
0
votes
0answers
92 views
cannot change table cell width with dynamic controls
I am creating a dynamic table in code-behind. The first row, in the first cell has a dynamic radiobuttonlist, and in second cell, a textbox as below:
The second row just uses a colspan=2.
I'd ...
1
vote
1answer
170 views
How to set fixed table border width for variable cells width
I have several RadiobuttonLists and all the label texts for list items have different widths. E.g.
RadiobuttonList #1
(o) this is a really long label [textbox]
(o) this is another really ...
0
votes
3answers
455 views
Gridview column not changing width size
I can't make this GridView column change its width, I have tried this:
<asp:BoundField DataField="ABC" HeaderText="ABC" SortExpression="ABC" ControlStyle-Width="200%">
Or as pixels:
...
0
votes
1answer
35 views
Table auto return Line
I would like to havé an table with an unique Line.
This table is generated by à asp.net listview.
The number of cell dépend of my data source.
I would like to go back on an another line when the ...
0
votes
1answer
1k views
How to change Column Width of GridView programically
I have GridView that is filled programically using List of Object. I can't access to Columns in GridView. I like to put Width of Columns programically?Here is the code how I fill the GridView
...
0
votes
1answer
713 views
asp.net change .page width
How to change the .page width value below, programmatically in the code behind page?
I need to set it based on the width of other elements on the page which keep changing based on user actions.
...
2
votes
1answer
755 views
How to change .net chart width to %100
How can I set the width of an asp:chart to be 100% the width of the page?
The chart width attribute does not like percentages.
Another solution would be to check the current resolution, how to get ...
2
votes
1answer
335 views
Using the total client width with CSS and JavaScript
I have a page with dashboard similar to iGoogle. I need to have the page work on the available client width.
I wrote a JavaScript to get the width and distribute it evenly amongst the divs. This ...
1
vote
1answer
8k views
set gridview column width programatically in asp.net
Need to set the column width of a gridview in asp.net programatically.
** Autogenerated Columns (i.e., AutogenerateColumns = "true").
i tried the following;
protected void gv_RowCreated(object ...
0
votes
4answers
505 views
Min-Width Table
I am attempting to create a min-width table of 500px with a cell containing a textarea with a min-width of 300px. The table's min-width doesn't seem to be working at all. I'm using CSS to style the ...
1
vote
2answers
422 views
Set height and width of an Image
I am using the below code to add Images and I would like to set width and height of an Image.
How do I add to the existing code:
Dim urls As New List(Of String)
urls.Add("~/DownloadedImages/" ...
0
votes
1answer
476 views
Get frame width/height of an mp4 file
Is it possible to get the frame width & height of an .mp4 file using ASP.NET?
I know how I can get the width & height of an image (by using a Bitmap object), but I'm not sure whether this is ...
0
votes
1answer
897 views
Set width of the dropdown asp:MenuItems
I made a Menu in asp.net with different levels. And out of curiousity I would like to know how to set the width for the MenuItems Test1 and Test2.
My code:
<asp:Menu ID="Menu1" runat="server" ...
1
vote
2answers
753 views
Text in Gridview longer than width
that the text in the gridview is longer than the width of the table. You can see how it looks here: Link
Does anybody know how i can fix this?
My code looks so:
<asp:GridView ...
0
votes
1answer
236 views
How to constrain the width of the browser to the width specified in a css class?
In css I use a class named bodyClass to set the aspx page's body width:65%;
In the page I have <body class="bodyClass".....
I can see my page is sized...
But the browser still opens itself at the ...
1
vote
3answers
4k views
ASP.NET Dropdownlist itemslist width problem in internet explorer
I need to somehow modify the ASP.NET dropdownlist control to have
an auto-width on the items list. The dropdownlist control in itself
has a fixed width and that cannot be changed.
I have tried ...
0
votes
1answer
568 views
asp.net detailsview how to set edit field width
I have a detailsview bound to a LINQ SQL query.
Display is fine, but when user switch to Edit mode, the width of all fields to edit is REDUCED, and there is no wordwrap!
How can I set width ...
0
votes
3answers
382 views
css styling issue with safari and IE 8
I am using a css stylesheet in one of my web pages. The styles work perfect for Mozilla and IE 7 and below. However theres a problem with it in IE8 and safari.
The width of class in the css is 700px. ...
1
vote
2answers
1k views
get current width of html form using javascript
I want to get the current width of an html form using javascript. I'm writing this in asp.net
Form definition: <form id="form1" runat="server">
What I an trying: ...
0
votes
1answer
345 views
Page width varies according to Iframe size?
I have a requirement where i need to display a aspx page say login.aspx in two different Iframes of different width without scroll bar.
E.g. Login.aspx should get displayed in iframe of width 800 and ...
0
votes
1answer
196 views
ASP.NET website adjustable width
I am using a CSS template to create a website and everything is appearing as a fixed size. How may I adjust everything so that the size of the items adjust to the size of the screen please so that it ...
1
vote
1answer
779 views
Keep width even when column changes. (HTML)
I have a login on the left sidebar of my website. When a user is logged in, the sidebar width doesn't remain the same as it was when the user wasn't logged in.
Is there a way to keep the width the ...
2
votes
3answers
5k views
How to set width of textbox to be same as MaxLength in ASP.NET
Is there a way I can limit the width of a textbox to be equal to the MaxLength property? In my case right now, the textbox control is placed in a table cell as in this snippet:
<td ...
1
vote
1answer
548 views
Shrink a cell (in an absolutely-positioned ASP.NET table) to fit its contents?
My webpage currently looks like this:
<asp:Table runat="server" style="position: absolute;
left: 0%; top: 82%; right: 0%; bottom: 0%; width: 100%; height: 18%"
CellPadding="0" ...
1
vote
2answers
246 views
How to set width of a custom validator
Does anybody know of a way to set the width of a custom validtor so that the error message text will wrap if it exceeds the specified width?
I have a user control that contains a custom validator ...
1
vote
2answers
3k views
How to get width of gridview column when AutoGenerateColumns is true
I have a gridview that I need to get the width of columns for after the gridview is databound. I have to have AutoGenerateColumns=true because the columns for the datatable that the gridview is bound ...
0
votes
2answers
909 views
How to create an ASP.NET Listview with draggable column widths?
In windows applications we can change the ListView's column width by just dragging the header of the column. How can I done that in a ASP.NET ListView?
0
votes
2answers
672 views
Adjust Width & Height of a Control (ASP.NET)
I am just starting to study ASP.NET from my WPF Knowledge. I think the UI designing is very difficult in ASP.NET compared to WPF XAML design.
I have a problem in my UI layout. In WPF we use Width=" * ...
1
vote
3answers
3k views
How To Set The CheckBoxList Properties?
I have a checkboxList with some 50 values. but I want only 5 to be displayed and navigate others using scroll bar.
I tried using
<asp:CheckBoxList CheckBoxes="true" Width="250px" ...
0
votes
2answers
588 views
Cut of text if too wide in CSS or Asp.net
I have this text inside a div with a fixed width:
Some headline (2009-10-10 small)
Some headline (2009-10-10 small)
Some headline (2009-10-10 large)
But when the headline is too wide the result is:
...
0
votes
2answers
3k views
How do I Get Height & Width from an Uploaded image file
I am using ASP.NET 2.0. I am trying to get the height & width of an image file I uploaded using the FileUpload control. Once uploaded, the image is kept in the db, not the file system. It seems I ...
0
votes
2answers
2k views
ASP.Net Dynamically set width of TreeView
I've got a tree view that can be anywhere from 1 level deep to nearly 6. Each node can be just a few letters or a couple of words totalling up to 20-30 characters.
How do I find the largest width of ...
