all groups > asp.net webcontrols > october 2005 > threads for october 1 - 7, 2005
Filter by week: 1 2 3 4 5
CSS and WebControls
Posted by Roger Moore at 10/7/2005 10:05:58 PM
Hi all,
I have a beginner's question:
If webcontrols are rendered to suit different browsers using different HTML
syntax for each, how can I create a unified CSS stylesheet to them (using
the cssStyle attribute).
What I say is that I need to know which HTML tag i'm applying the style to,
... more >>
Problem with multiuser access in asp.net - help wanted
Posted by Deep Silent Ocean at 10/7/2005 7:44:22 PM
Hi All
I am developing one Portfolio Management application where there is
single database shared by all the traders.
I have developed web-based application for this. I want to make this
multiuser application.
Following is the architecture of the application ...
Front End is develope... more >>
Access to dynamically bound columns
Posted by Bman at 10/7/2005 10:46:09 AM
This seems like it should be a simple task, I have a list box loaded with
table names on a web page and a datagrid with an EditCommandColumn defined in
the aspx page. I load the selected table into the datagrid and bind the
columns at run-time and add the columns to the datagrid's column coll... more >>
Need to have ShortDateTime Format with Datetime Type in DataGrid
Posted by A Programmer at 10/7/2005 8:15:03 AM
I can't believe I have never run into this before but, I have an object that
has a property of type DateTime. A collection of these objects are used to
populate my DataGrid. In DateTime format they display the date AND the time,
I don't need nor want the time just the date. If I format at any ... more >>
htmlTableCell, htmlTableRow pre-populate
Posted by bh_jodokast at 10/7/2005 12:00:00 AM
I have an htmlTable that I assemble, based on a SQL query.
htmlTableRow = New HtmlTableRow
htmlTableCell = New HtmlTableCell
htmlTableCell.InnerHtml = colServerList(intCounterServerListCol)
htmlTableCell.Attributes.Add("class", "body2")
htmlTableRow.Cells.Add(htmlTableCell)
tbl_Results.Rows... more >>
Calendar Webcontrol
Posted by Jay at 10/6/2005 5:37:17 PM
Does anyone have any suggestions for a great Calendar Control for
calendaring and scheduling - day, week, month, year views, etc.
Jay
... more >>
Trouble with Server-Side component
Posted by wagaman NO[at]SPAM gmail.com at 10/6/2005 11:50:47 AM
I know that OWC is not intended for use on the server side, however I'm
not sure of another way around it. Here is what I need to do:
1. Create jpg of OWC PivotTable
2. Create jpg of OWC Chart
3. Insert those jpg's into an SQL DB
4. Create a Crystal Report to display both images together (alo... more >>
HyperLink with IsPostBack= true
Posted by Amirallia at 10/6/2005 10:20:07 AM
I create a 12 HyperLink controls dynamically, with links to the same
aspx page but with different query string, I pass the year and the
month in the query string.
Is it possible to put the IsPostBack value to true when I click on the
HyperLink and reload the page with different query string... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Dispalying Welcome User to logged in user
Posted by mark at 10/6/2005 8:25:27 AM
Hello
I want to display on a webpage Welcome Mark to a logged in user. Users login
using their email address but I want to display their Name from the same
table which stores email and password. Here is the code I'm using but it
doesn't work.
Sub Page_Load
Dim conMyData As SqlConnection... more >>
Another Repeater question
Posted by Peter Kirk at 10/6/2005 12:00:00 AM
Hi
I generate an array of Port objects, and "bind" them to a repeater, called
PortList, like this:
PortList.DataSource = ports;
PortList.DataBind();
I can then use this in my asp, like this (pseudo asp):
<asp:repeater id="PortList" Runat="server">
<ItemTemplate>
<%# ((IPort)Co... more >>
formview control question
Posted by TdarTdar at 10/5/2005 9:34:01 PM
I have a form view control linked to a sql database
with the database fields of:
lenght
weidth
height
oversize
I would like to access the lenght after user types in values to
run some math to determine what oversize shoud be and enter
that in automatically before the fromview insert is ... more >>
Image Refresh
Posted by Thom Little at 10/5/2005 8:28:55 PM
ASP.NET 1.1 Web Form
The intended operation ...
Enter String 1 in Text Box
Hit Show button
String is shown as an image
Hit Reset button
String is reset to null
Enter String 2 in Text Box
Hit Show button
String should be shown as and Image
This works great once.
The second time it i... more >>
Repeater
Posted by Peter Kirk at 10/5/2005 12:00:00 AM
Hi there
I have some c# code which extracts a list of data (an array of Port objects)
from a database, and I need to display this data on an asp, where the user
can see and edit the data (and press a "save" button to write changes back
to the database).
I am using a "repeater" to list th... more >>
Rotating User Controls
Posted by Chris Cullari at 10/4/2005 10:19:01 AM
Can anyone tell me if it is possible to rotate a UserControl, say a Button,
at a specified angle? The only such functionality I have been able to find is
if I create an image, but then I would loose the functionality of the button
control. Thanks.
... more >>
what ASP.NET treeview control is the best?
Posted by bill at 10/3/2005 4:49:52 PM
Is the Microsoft treeview control as good as the rest?
How about Powerup, or some other ones?
Thanks
Bill
... more >>
Adding rows to a Tablecontrol does not save in viewstate
Posted by Allan Ebdrup at 10/3/2005 10:07:57 AM
I'm Using ASP.Net 2.0 and VS2005 RC.
I've added a TableControl and a Wizard Control to my ASP.Net Page.
When i Click Finish on the wizard I do the following code:
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tc.Text = "TEST";
tr.Cells.Add(tc);
Table1.Rows.Add(tr);
And a ... more >>
how to access PlaceHolder from codeBehind (class - .dll file) ???? PLEASE HELP
Posted by gonzal kamikadze at 10/3/2005 12:00:00 AM
Hi
It is possible to access a placeHolder in a aspx page from a class (compiled
code)?
(coding in VB)
--- ASPX page ---
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1"
debug="true" %>
<%@ Import Namespace="myNameSpace" %>
<script runat="server">
Sub... more >>
What is wrong with this code? please
Posted by Annie at 10/3/2005 12:00:00 AM
hello guys,
I am getting the following error:
Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.
What i am trying to do is to loop through all of the controls on the page
and if they are Checkboxes and then see if the they are checked the... more >>
adding a site wide footer to all appx pages
Posted by Larry at 10/1/2005 6:07:24 PM
In IIS there is a setting for having IIS append an html file to the bottom
of every page serverd for a web site.
Problem is that IIS doesn't really look at aspx files as it serves them so
this footer doesn't appear for those files.
Is there a setting, a simple way to have this "HTML footer... more >>
Change data grid control on the client side.
Posted by milkyway at 10/1/2005 2:46:20 AM
Hello,
I am using Visual Studio 2005 now. Is there an example out there where
one can see a Microsoft Datagrid control being modified on the client
side - specifically by javascript? I wanted to add rows to the control
(and remove them too). Is there a way for this to be done at all?
TIA
... more >>
|