Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for ChimpusDupus

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 which would be more suited for such a project. Any suggestions? -James

Member Avatar for Ancient Dragon
0
339
Member Avatar for infinity4ever
Member Avatar for venu.net143
0
81
Member Avatar for UIJAD

i am trying to programatically change the page culture and uiculture ( c# ), my webpage needs to have 2 languages and i have prepaired the right resource files ( .resx) and they are functional since when i try writing in the web.config culture="ar-LB" it works fine now i understand …

Member Avatar for TechGuru123
0
104
Member Avatar for ChimpusDupus

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 object in the page's PreInit event. This requires that …

Member Avatar for andy28
0
91
Member Avatar for ChimpusDupus

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 investigate the problem, I realized that, if I start the application on the Default …

Member Avatar for achristov
0
129
Member Avatar for StewartS

Hi! Is there any consensus as to the best way to handle dynamic button clicks? The buttons are being created dynamically and conditionally placed, depending on business logic. Our problem is that on clicking such a button, the postback calls the Page_Load but not the Button_OnClick. I notice that if …

Member Avatar for kvprajapati
0
430
Member Avatar for ChimpusDupus

Hi, I am creating a page in which thumnails, in the form of Image Buttons (System.Web.UI.WebControls.ImageButton), are dynamically created based on which LinkButton is clicked out of a group of several links. I need each thumbnail to generate a full-size image on the page when clicked. I would use the …

Member Avatar for tybalt88
0
285
Member Avatar for ChimpusDupus

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 application has 3 themes and a new user control was added to a page, is …

0
62
Member Avatar for ChimpusDupus

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 prototype server (which has a certificate that is past it's expiration date). I get …

0
52
Member Avatar for ChimpusDupus

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 event. The problem is that on the postback, the …

Member Avatar for ChimpusDupus
0
96
Member Avatar for ChimpusDupus

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 XML files that hold data, everything I've found on the internet and such hasn't given …

0
78
Member Avatar for ChimpusDupus

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 requirements, meets requirements, exceeds expectations greatly exceeds expectations), and another table that holds the data for each peer review …

Member Avatar for ChimpusDupus
0
110
Member Avatar for ChimpusDupus

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

Member Avatar for mkbmain
0
110
Member Avatar for ChimpusDupus

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 the columns to Template Columns and simply dragging and dropping the controls …

Member Avatar for Datrias
0
105
Member Avatar for postmaster

How to upload Images to SQL Server database using ASP.NET tools. Also how to retrieve those saved images from SQL Server and display them onto DataGrid. Visit: [URL="http://www.programmingknowledge.com/ImageUpload.aspx"]http://www.programmingknowledge.com/ImageUpload.aspx[/URL]

Member Avatar for postmaster
0
133
Member Avatar for ChimpusDupus

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 displayed (using the WHERE clause of the SQL Select Query), though the FilterParameter would make more …

Member Avatar for ChimpusDupus
0
187
Member Avatar for ChimpusDupus

Hi, [B]Is it possible/how can I dynamically add fields to a DetailsView using code?[/B] I have a detailsview set for inserting data, but some of the fields that need to be inputed are based on records in the database, selected by a dropdown list in another field. -James

0
79
Member Avatar for ChimpusDupus

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 the database. The page uses the [inlinecode]Response.BinaryWrite()[/inlinecode] method to display …

0
66
Member Avatar for ChimpusDupus

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 this...assuming you aren't using any template rows. I happen to be using several template …

0
65
Member Avatar for gajee

Hi..All, Can somebody please tell me what is wrong with this ASP.NET page?? The browser is returning me the error --> SubmitBtn_click is undefined <-- here is the code ...... ... [HTML]<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="iso-8859-1" %> <%@Import Namespace="System"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> …

Member Avatar for gajee
0
115
Member Avatar for ChimpusDupus

Ummm...I'm know it seems like it should be obvious, but what does this mean: [I]Type 'System.Web.UI.WebControls.DataKey' in Assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable.[/I]

Member Avatar for tgreer
0
106
Member Avatar for ChimpusDupus

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 [I]really [/I]wants to delete the information. I can set the button's OnClientClick property to "javascript:confirm('Are you …

Member Avatar for ChimpusDupus
0
154
Member Avatar for ChimpusDupus

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 use. The problem is that I only want these functions to be available …

Member Avatar for ChimpusDupus
0
86
Member Avatar for ChimpusDupus

If you haven't guessed by the number of questions I'm asking, I'm in the process of [I]learning[/I] ASP.NET as well as using it to update a website. This problem deals with Validation. Basically, I have two buttons within a table that have the functions of Editing corresponding data in the …

0
72
Member Avatar for ChimpusDupus

Hi, I've been trying to get this to work for hours to no avail (at least they're paying me :cheesy: ). I have a DropDownList that obtains its values from a database. The DropDownList will not retain it's values when a Postback is done (caused by a submit button being …

Member Avatar for ChimpusDupus
0
473
Member Avatar for aish

I fill dropdown lists values from the database then I wants to hard code first value and last value. I already hard code first value it's like this. cboName.Items.Insert(0,new ListItem("----Select----","0")); how can I hard code last value of the dropdown list, I want to add last value as a ----Other----. …

Member Avatar for ChimpusDupus
0
144
Member Avatar for ChimpusDupus

Hi, My name is James and I'm from Southern Maryland. I'm a junior in highschool and this summer I am working as a paid intern at Zekiah Technologies, working with ASP.NET. I have experience with VB6, some C++, some HTML/CSS/Javascript, and a little ASP.NET. I just bought Microsoft Visual Studio …

Member Avatar for Dani
0
89
Member Avatar for ChimpusDupus

Hi, I've been wondering for a long time how one program can affect another program during run time by adding featues, retrieving information, submitting information and those sorts of things. One example of this might be a program like DeadAIM, which affects AOL Instant Messenger, or (doubtedly) if your in …

0
58