Forum: ASP.NET May 27th, 2009 |
| Replies: 1 Views: 893 One of the pages in my web application works fine when I start the application from that page, but has some problems if I start from another page, including the Default.aspx page. When I went to... |
Forum: ASP.NET Jul 9th, 2008 |
| Replies: 0 Views: 407 Is there any easy (as in programmatic) way to make sure that every theme in the ASP.NET App_Themes folder for an application has skin definitions for all of the same controls.
For example, if an... |
Forum: ASP.NET Jun 19th, 2008 |
| Replies: 1 Views: 1,347 What code are you using to set the culture programaticaly? |
Forum: ASP.NET Jun 18th, 2008 |
| Replies: 0 Views: 932 Hi,
I have a small website that I'm using to test some things involving accessing an XML file for data. It works just fine in Visual Studio's debugging environment, but when I put it on a... |
Forum: ASP.NET Jun 18th, 2008 |
| Replies: 2 Views: 902 The reason that solution would not work for me is that theme must be set based on user preferences stored in some sort of datasource, right now an XML file, and thus would have to be set... |
Forum: ASP.NET Jun 17th, 2008 |
| Replies: 2 Views: 902 Hi,
I have several themes that can be applied to pages on a website based on a users preferences. The problem is that the only way I know how to apply a theme to a website is to set the Page.Theme... |
Forum: ASP.NET Jun 17th, 2008 |
| Replies: 1 Views: 858 Figured it out myself >_<
I just needed a Response.Redirect(); to redirect the browser to the same page |
Forum: ASP.NET Jun 17th, 2008 |
| Replies: 1 Views: 858 Hi,
I have a drop-down list that is used to select a theme (which can only be set in the Page_PreInit event) and so I set a session object called theme that I use to set the theme in the PreInit... |
Forum: XML, XSLT and XPATH Jun 16th, 2008 |
| Replies: 0 Views: 879 hi,
I feel retarded working with XML right now because I have no clue whatsoever how to do anything with.
I really just need a simple, straigtforward description of how to read, edit, and write... |
Forum: MS SQL Jun 22nd, 2007 |
| Replies: 3 Views: 1,137 Looks like I found the answer somewhere else. I just had to use LEFT JOIN to the peerReviewQuality table for each column in the peerReview table:
SELECT peerReview.employeeID,... |
Forum: MS SQL Jun 22nd, 2007 |
| Replies: 3 Views: 1,137 Attatched is the diagram of the relationship. I want to display a report that has a qualityDescription for each of the columns in the peerReview table that are related to the peerReviewQuality table... |
Forum: MS SQL Jun 21st, 2007 |
| Replies: 3 Views: 1,137 Hm, I think my first message was probably very unclear. My problem seems to be that I'm working with a one-to-many relationship (I only know how to work with one-to-one relationships).
Basically,... |
Forum: MS SQL Jun 21st, 2007 |
| Replies: 3 Views: 1,137 Hi,
I created to data tables to hold information provided through peer reviews in the company that I work for. One table has 5 different levels of quality (unsatisfactory, meets some... |
Forum: C# Jan 7th, 2007 |
| Replies: 2 Views: 13,384 Hi,
Is it possible to use the System.Drawing.Graphics methods without having to put code in the control's Paint event? If so, how?
-James |
Forum: IT Professionals' Lounge Sep 8th, 2006 |
| Replies: 5 Views: 1,919 Thanks for the link. It looks pretty helpful. |
Forum: IT Professionals' Lounge Sep 5th, 2006 |
| Replies: 5 Views: 1,919 I am planning to do the project alone and, though this may change later, I really only need it to work on my own computer, using Windows XP. I don't know C# very well, though I know it's basically... |
Forum: IT Professionals' Lounge Sep 5th, 2006 |
| Replies: 5 Views: 1,919 Hi,
I want to create a music editing program that will allow you to play songs using a MIDI device. I know there are significant differences in the capabilities of VB.NET and C++ but I'm not sure... |
Forum: ASP.NET Aug 29th, 2006 |
| Replies: 3 Views: 11,342 Image data is stored on a SQL database as binary data, and must be read as such. In order to create this DataGrid, you will need the page that it is on, say Default.aspx and another page to gather... |
Forum: ASP.NET Aug 6th, 2006 |
| Replies: 2 Views: 6,849 Yeah, I got that pretty easily. I just couldn't think of out to select record for all of the selected values each time the grid was databound. I ended up using a similar loop structure and then added... |
Forum: ASP.NET Aug 2nd, 2006 |
| Replies: 0 Views: 3,711 Hi,
Is it possible/how can I dynamically add fields to a DetailsView using code? I have a detailsview set for inserting data, but some of the fields that need to be inputed are based on records... |
Forum: ASP.NET Jul 28th, 2006 |
| Replies: 0 Views: 3,405 Hi,
I'm using a GridView Control in which I wish to show thumbnail versions of images saved as binary data on a SQL DB. I have a page that accepts an ID parameter to use in finding the image on... |
Forum: ASP.NET Jul 27th, 2006 |
| Replies: 2 Views: 6,849 Hi,
What is the best way to control data displayed by a GridView when using a listbox that allows you to make multiple selections. I'm currently using a Select Parameter to control the data... |
Forum: ASP.NET Jul 24th, 2006 |
| Replies: 0 Views: 2,611 I have a GridView and a DetailsView on the same page which work together allowing you to Insert or Edit data records read by the GridView from the DetailsView. My ASP.NET book explains how to do... |
Forum: ASP.NET Jul 19th, 2006 |
| Replies: 1 Views: 1,580 Ummm...I'm know it seems like it should be obvious, but what does this mean:
Type 'System.Web.UI.WebControls.DataKey' in Assembly 'System.Web, Version=2.0.0.0, Culture=neutral,... |
Forum: ASP.NET Jul 19th, 2006 |
| Replies: 1 Views: 5,740 Hi,
I have a controls in the footer row of a gridview that allow the user to insert a record into the data table bound to the gridview. The controls were each added into the columns by converting... |
Forum: ASP.NET Jul 19th, 2006 |
| Replies: 6 Views: 13,744 I think you can do this in the same way that you would any table-related collection. If you simply want to add a control, you user GridView1.Rows(y).Cells(x).Controls.Add(ControlToAdd) If you want to... |
Forum: ASP.NET Jul 19th, 2006 |
| Replies: 3 Views: 10,708 Thanks, that's just what I needed. |
Forum: ASP.NET Jul 18th, 2006 |
| Replies: 1 Views: 25,302 Also, I can not figure out how to add a confirm option for the delete function, such as setting the delete button's onclient click property to a javascript confirm message's return value. (assuming... |
Forum: ASP.NET Jul 17th, 2006 |
| Replies: 1 Views: 25,302 Hi,
I have a GridView that displays data from a MS SQL database (duh!). I know the GridView allows you to have a command column with such functions as Edit, Update, Delete, etc., which I wish to... |
Forum: ASP.NET Jul 17th, 2006 |
| Replies: 3 Views: 10,708 I tried setting the onClientClick property to if (confirm('Are you sure you want to delete this item?')){form1.submit;} but the result is still the same. |
Forum: ASP.NET Jul 17th, 2006 |
| Replies: 12 Views: 14,300 I'm having the same problem with image buttons. The above solution works when done in something like the page_load, but in my case, the assignment of the even handler occurs in the button_click event... |
Forum: ASP.NET Jul 14th, 2006 |
| Replies: 0 Views: 3,934 If you haven't guessed by the number of questions I'm asking, I'm in the process of learning ASP.NET as well as using it to update a website.
This problem deals with Validation. Basically, I have... |
Forum: ASP.NET Jul 14th, 2006 |
| Replies: 3 Views: 10,708 Hi,
I'm creating a page that has an ASP button that should delete a row of data from an SQL database. I want a javascript confirm window to appear to make sure the user really wants to delete the... |
Forum: ASP.NET Jul 14th, 2006 |
| Replies: 3 Views: 1,770 Not sure if it will work but try changing onClick in the input button's tag to onServerClick. If that doesn't work, give the button an ID and then add a handles ButtonID.ServerClick to the function... |
Forum: ASP.NET Jul 12th, 2006 |
| Replies: 4 Views: 7,754 Okay, I've broken this down to make the problem as clear as I can. Here is the code I have written for a simple page with one table called Table1(with one row and one cell), and a Button called... |
Forum: ASP.NET Jul 12th, 2006 |
| Replies: 4 Views: 7,754 Looks like I cannot get the imagebutton's _click event to happen either :sad: |
Forum: ASP.NET Jul 11th, 2006 |
| Replies: 4 Views: 7,754 |
Forum: ASP.NET Jul 10th, 2006 |
| Replies: 9 Views: 5,558 Just now figured it out after about 2 days of trying things. The problem was caused by the fact that I was programmatically 'moving' the lists into a table. When that happens, I think the control is... |
Forum: ASP.NET Jul 10th, 2006 |
| Replies: 9 Views: 5,558 Looks like I'm having the same problem on another page with another list-related control. It seems that lists do not want retain their selected value information on for postbacks (unless they... |
Forum: ASP.NET Jul 10th, 2006 |
| Replies: 9 Views: 5,558 I did try to add the IsPostBack check again, and it seems to conserve the DropDownList values, but not the selected information (.selectedvalue, .selectedtext, and .selectedindex). As far as my code,... |