User MadMAxJr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:40:06Zhttp://stackoverflow.com/feeds/user/12545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797626/something-like-viewstate-and-session/1798483#17984830Answer by MadMAxJr for Something like viewstate and sessionMadMAxJr2009-11-25T17:16:58Z2009-11-25T17:16:58Z<p>I'm starting to think the answer shown in the following question will work:</p>
<p><a href="http://stackoverflow.com/questions/378381/viewstate-object-lost-in-master-page-load">http://stackoverflow.com/questions/378381/viewstate-object-lost-in-master-page-load</a></p>
<p>Exposing the desired variables via a property.</p>
http://stackoverflow.com/questions/389431/data-collection-methods-asp-net-2-0-vb0Data collection methods. (ASP.NET 2.0 - VB)MadMAxJr2008-12-23T16:58:48Z2009-11-01T18:00:03Z
<p>I'm stumped again on how to proceed with a survey system I am working on. We have database data for matrix sytle questions (rows are various questions, columns are various answer types), where each cell needs to be able hold a different kind of control. We have a database framework for this. The problem comes with how to dynamcially render this onto the screen. We need to be able to control the placement of various answers. My initial thought was having to use a placeholder and write several LiteralControls into it to build the HTML for a table and control the spacing that way. Would it be possible to do this using a GridView instead? I am not sure which one would be the easier method. If there are other possiblities, I could really use the ideas. AJAX is not an option.</p>
<p>This is similar to a question I have previously asked, but this has more to do with the controls on the aspx page, rather than the bare logic behind it.</p>
http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code102How do you tell someone they're writing bad code?MadMAxJr2008-10-15T20:24:42Z2009-10-18T05:45:17Z
<p>I've been working with a small group of people on a coding project for fun. It's an organized and fairly cohesive group. The people I work with all have various skill sets related to programming, but some of them use older or outright wrong methods, such as excessive global variables, poor naming conventions, and other things. While things work, the implementation is poor. What's a good way to politely ask or introduce them to use better methodology, without it coming across as questioning (or insulting) their experience and/or education?</p>
<p>EDIT:
Wow, a lot of great answers. Thanks for the input so far. I'm not even sure if there is a truly correct answer to this.</p>
http://stackoverflow.com/questions/344225/multiple-answer-matrix-in-asp-net0Multiple Answer Matrix in ASP.NETMadMAxJr2008-12-05T15:42:01Z2009-10-07T14:00:04Z
<p>I'm involved on a project to make a survey system. We've been hammering out the logic for a few question types, and I could use a second opinion on what is the best way to proceed. We work on a ASP.NET 2.0 website using VB(VS2005) with an Oracle database.</p>
<p>In our oracle server, we plan for some tables to organize our data. There's a table for our surveys, one for questions (keys determine which survey it goes on), one for answers (again, keys determine what question it belongs to), and one for answer collection. Most questions only return one response, and that's pretty easy to figure out. However, when we start thinking about items that return multiple answers, it starts to get tricky.</p>
<p>For example, if we have a simple matrix of 3x3 filled with check boxes. The rows are days 'Monday', 'Wednesday', 'Friday'. The columns are activities like 'Biking', 'Running', 'Driving'. The user checks each one they did for a given day, thus each row can have more than one response. Another one we want to think about is what if instead of checkboxes, we have textboxes where users write in a value of how many minutes they spent on an activity.</p>
<p>So far, for collecting responses, I like the idea of <a href="http://aspnet.4guysfromrolla.com/articles/081402-1.2.aspx" rel="nofollow">traversing a list of controls</a> in the form and keeping tabs on the kinds of controls that collect data. Since the controls are created in code, usually they're given an ID of a string with a number affixed to the end to keep track of what question type it is, and what number it is.</p>
<p>Question #1:
Should the data returned from the user be in a single database entry with delimiters to separate each answer, or should each answer get it's own entry?</p>
<p>Question #2:
What's the best way to identify what response goes with what answer (on the survey)?</p>
http://stackoverflow.com/questions/1412023/constructing-a-good-search-query-using-system-data-oracleclient1Constructing a good search query using system.data.oracleclientMadMAxJr2009-09-11T16:38:25Z2009-09-15T22:13:51Z
<p>I am constructing a search function in a class to be used by several of our asp pages. The idea is simple, take a search term from the user and query the database for the item. Currently I am doing this the wrong way, which is vulnerable to SQL injection attacks (and <a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> is in there to save the day if something goes wrong):</p>
<pre><code>Public Shared Function SearchByName(ByVal searchterm As String) As DataTable
SearchByName = New DataTable
Dim con As New OracleConnection(System.Configuration.ConfigurationManager.ConnectionStrings("OracleDB").ConnectionString)
Try
con.Open()
Dim SqlStr As String = "select ID_ELEMENT, ELEMENT_NAME from table_of_elements where upper(ELEMENT_NAME) like upper('%" & searchterm & "%')"
Dim cmd As New OracleCommand(SqlStr, con)
SearchByName.Load(cmd.ExecuteReader)
Catch ex As Exception
Elmah.ErrorSignal.FromCurrentContext().Raise(ex)
End Try
con.Close()
con.Dispose()
Return SearchByName
End Function
</code></pre>
<p>String concatenation is BAD. Next thing you know, <a href="http://xkcd.com/327/" rel="nofollow">Bobby Tables</a> wrecks my system.
Now, the correct way to do this is to to make a proper oracle variable, by putting :searchterm in the string and adding the following line:</p>
<pre><code>cmd.Parameters.Add(New OracleParameter("SEARCHTERM", searchterm))
</code></pre>
<p>The problem is since I am using a like statement, I need to be able to have % on either side of the search word, and I can't seem to do that with '%:searchterm%', it just gives an error of ORA-01036: illegal variable name/number.</p>
<p>Can I parameterize but still have my flexible like statement be a part of it?</p>
http://stackoverflow.com/questions/129624/recommendations-on-learning-pl-sql5Recommendations on learning PL/SQL?MadMAxJr2008-09-24T20:14:27Z2009-01-06T21:51:55Z
<p>I have worked with SQL on Oracle 9, and a bit on SQL Server 2000 for about a year. I need to get a jumpstart on working with PL/SQL in Oracle 9i. I work with a handful of ASP.NET 2.0 sites and some VB.NET (VS2005) apps in terms of code experience. What books or websites would you recommend to help me bridge the gap?</p>
http://stackoverflow.com/questions/279333/sql-cheatsheet/279365#2793651Answer by MadMAxJr for SQL Cheatsheet?MadMAxJr2008-11-10T22:11:27Z2008-11-10T22:11:27Z<p>I'm a fan of the <a href="http://oreilly.com/catalog/9780596526887/" rel="nofollow">O'Reilly SQL pocket guide</a>. It covers most of the major DB system types, and explains some of the functions that are unique to certain ones.</p>
http://stackoverflow.com/questions/270695/return-a-value-from-a-insert-statement3Return a value from a insert statement.MadMAxJr2008-11-06T23:01:58Z2008-11-07T10:00:40Z
<p>Working with an Oracle 9i database from an ASP.NET 2.0 (VB) application using OLEDB. Is there a way to have an insert statement return a value? I have a sequence set up to number entries as they go into the database, but I need that value to come back after the insert so I can do some manipulation to the set I just entered in the code-behind VB.</p>
http://stackoverflow.com/questions/153782/dropdown-controls-in-asp-net-2-01Dropdown controls in ASP.NET 2.0MadMAxJr2008-09-30T16:13:05Z2008-10-31T21:32:03Z
<p>I am using a codebehind page in ASP.NET to perform a SQL query. The query is loaded into a string, the connection is established (To Oracle), and we get it started by having the connection perform .ExecuteReader into a OleDBDataReader (We'll call it DataRead). I'll try to hammer out an example below. (Consider Drop as an ASP DropDownList control)</p>
<pre><code>Dim LookFor as String = "Fuzzy Bunnies"
While DataRead.Read
If LookFor = DataRead.Item("Kinds of Bunnies") Then
'Meets special critera, do secondary function'
Drop.Items.Add(DataRead.Item("Subgroup of Bunnies"))
...
End if
...
End While
</code></pre>
<p>This is the only way I know of doing a dynamic add to a DropDownList. However, each item in a DropDownList has a .text property and a .value property. How can we define the .value as being different from the .text in code?</p>
http://stackoverflow.com/questions/199142/passing-a-outside-variable-into-a-aspsqldatasource-tag-asp-net-2-00Passing a outside variable into a <asp:sqldatasource> tag. ASP.NET 2.0MadMAxJr2008-10-13T21:48:51Z2008-10-31T21:31:36Z
<p>I'm designing some VB based ASP.NET 2.0, and I am trying to make more use of the various ASP tags that visual studio provides, rather than hand writing everything in the code-behind. I want to pass in an outside variable from the Session to identify who the user is for the query.</p>
<pre><code><asp:sqldatasource id="DataStores" runat="server" connectionstring="<%$ ConnectionStrings:MY_CONNECTION %>"
providername="<%$ ConnectionStrings:MY_CONNECTION.ProviderName %>"
selectcommand="SELECT THING1, THING2 FROM DATA_TABLE WHERE (THING2 IN (SELECT THING2 FROM RELATED_DATA_TABLE WHERE (USERNAME = @user)))"
onselecting="Data_Stores_Selecting">
<SelectParameters>
<asp:parameter name="user" defaultvalue ="" />
</SelectParameters>
</asp:sqldatasource>
</code></pre>
<p>And on my code behind I have:</p>
<pre><code>Protected Sub Data_Stores_Selecting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SqlDataSourceSelectingEventArgs) Handles Data_Stores.Selecting
e.Command.Parameters("user").Value = Session("userid")
End Sub
</code></pre>
<p>Oracle squaks at me with ORA-01036, illegal variable name. Am I declaring the variable wrong in the query? I thought external variables share the same name with a @ prefixed. from what I understand, this should be placing the value I want into the query when it executes the select.</p>
<p>EDIT: Okay, thanks for the advice so far, first error was corrected, I need to use : and not @ for the variable declaration in the query. Now it generates an ORA-01745 invalid host/bind variable name.</p>
<p>EDIT AGAIN: Okay, looks like user was a reserved word. It works now! Thanks for other points of view on this one. I hadn't thought of that approach.</p>
http://stackoverflow.com/questions/230186/page-load-issue-in-asp-net-2-03Page.Load issue in ASP.NET 2.0MadMAxJr2008-10-23T15:29:17Z2008-10-23T17:08:44Z
<p>I am trying to aid another programmer with a page called Default.aspx with a code-behind section, and unfortunately I am at a bit of a loss.</p>
<pre><code> Partial Class _Default
Inherits OverheadClass
'A bunch of global variables here'
Private Sub page_load(ByVal sender As Object, ByVal e As System.Eventarts) Handles Me.Load
'Function goes here'
</code></pre>
<p>And in the OverheadClass we have</p>
<pre><code> Public Sub Sub_OverheadClass_Load(ByVal sender As Object, ByVal e as System.EventArgs) Handles MyClass.Load
</code></pre>
<p>The desired effect is when the OverheadClass is inherited, we want its load to run before the load event on the page runs. There is probably a very simple answer to this that I am missing.</p>
<p>Edit: I forgot to note that we write in VB, and not C# as many of you are used to for ASP.</p>
http://stackoverflow.com/questions/153782/dropdown-controls-in-asp-net-2-0/153809#1538090Answer by MadMAxJr for Dropdown controls in ASP.NET 2.0MadMAxJr2008-09-30T16:18:15Z2008-09-30T16:18:15Z<p>Actually, with a little help here at the office, I think we may have found our own solution.</p>
<p>If we create a new ListItem, one of the constructors allows for you to define text AND value, and if we then feed that ListItem in, we get the desired result of differeint text AND value.</p>
<p>EDIT: Six answers between post and this? Wow. Thanks. This site is <strong>awesome</strong>. Thanks for the help!</p>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/133949#1339492Answer by MadMAxJr for When did you know it was time to leave your job?MadMAxJr2008-09-25T15:21:59Z2008-09-25T15:21:59Z<p>When the users keep a 'secret' list of what developer goes with what app, so they can skip the helpdesk and call you direct.</p>
<p>When the majority of your daily job is maintaining a 'mission critical' VBA Access '97 app, while the rest of office suite is 2000/2003.</p>
<p>When you get into the office in the morning, look at your inbox, and want to bang your head against the wall. Bonus point: Series of emails from user after regular working hours wondering why you're not responding to the help request they put in.</p>
<p>When given an existing application to maintain, and nobody is sure how it works, the original designer no longer works with the company, there is no documentation, no code comments, and you've got a two week deadline to make some upgrades.</p>
<p>Eventually, these factors drove me to find greener pastures. And I found one!</p>
http://stackoverflow.com/questions/132403/which-language-should-i-pick-up-vb-net-or-c/133868#1338680Answer by MadMAxJr for Which language should I pick up: VB.Net or C#MadMAxJr2008-09-25T15:06:49Z2008-09-25T15:06:49Z<p>I'd recommend both. Start with whichever you have a solid background with. I've got a few years of VB.NET under my belt, and find it a little annoying that when I go to look up help topics for .NET or ASP.NET, just about everything is in C#, so you end up having to learn a bit about C# regardless. I found this <a href="http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx" rel="nofollow">wonderful conversion tool</a> from Developerfusion to be very useful. It isn't always correct, but it's very handy.</p>
http://stackoverflow.com/questions/1797626/something-like-viewstate-and-sessionComment by MadMAxJr on Something like viewstate and sessionMadMAxJr2009-11-25T16:00:54Z2009-11-25T16:00:54ZI'm another developer on this project. Part of the problem is the system we're using to display various charts has four screens. Each screen (with one browser instance) needs to be able to keep track of what it is filtering different from each of the others. Hence our inital use of viewstate. Session is just one instance, so when you update one browser, it's using all the filters from the most recent change on any of the other instances.http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771296#1771296Comment by MadMAxJr on What are some bad programming habits to look out for and avoid?MadMAxJr2009-11-20T16:28:25Z2009-11-20T16:28:25ZI'm guilty of this.http://stackoverflow.com/questions/1412023/constructing-a-good-search-query-using-system-data-oracleclient/1429903#1429903Comment by MadMAxJr on Constructing a good search query using system.data.oracleclientMadMAxJr2009-09-16T15:12:49Z2009-09-16T15:12:49ZMy problem is a bit more narrow in scope than what your link is meant for, but it makes for some very interesting reading, and I wanted to thank you for that.http://stackoverflow.com/questions/1412023/constructing-a-good-search-query-using-system-data-oracleclient/1429809#1429809Comment by MadMAxJr on Constructing a good search query using system.data.oracleclientMadMAxJr2009-09-16T15:07:39Z2009-09-16T15:07:39ZI'm going to test this real quick. If this works, you'll be the happy owner of 100 shiny new rep.http://stackoverflow.com/questions/168677/whats-a-programming-answer-you-hate-to-hear-the-most-yet-give-out-yourself-on-m/168714#168714Comment by MadMAxJr on What's a programming answer you hate to hear the most, yet give out yourself on many occasions?MadMAxJr2009-09-11T16:50:19Z2009-09-11T16:50:19ZI'm guilty of this one, multiple times in one day.http://stackoverflow.com/questions/933554/elmah-not-working-with-asp-net-site/1175023#1175023Comment by MadMAxJr on Elmah not working with asp.net siteMadMAxJr2009-08-31T20:45:01Z2009-08-31T20:45:01ZFor some reason, this got ELMAH working for me on a different server. Which is odd, as it should be identical to ours, yet we just have system.webserver declarations.http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243442#243442Comment by MadMAxJr on Dealbreakers for new programming jobs?MadMAxJr2008-10-28T15:56:06Z2008-10-28T15:56:06ZVisual SourceSafe is fun. Especially if someone who no longer works there still has the code checked out!http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243006#243006Comment by MadMAxJr on Dealbreakers for new programming jobs?MadMAxJr2008-10-28T15:43:33Z2008-10-28T15:43:33ZMy last job did the last two on this list, extensively.http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243009#243009Comment by MadMAxJr on Dealbreakers for new programming jobs?MadMAxJr2008-10-28T15:41:46Z2008-10-28T15:41:46ZI don't think I could live with a job where I couldn't have giant robot models and action figures on my desk. I have to have some fun stuff to stir the imagination while coding.http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/185197#185197Comment by MadMAxJr on What Programming Book would you NOT recommend to Developers?MadMAxJr2008-10-16T18:06:58Z2008-10-16T18:06:58ZThere's also a Manga Guide to Statistics.http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/206311#206311Comment by MadMAxJr on How do you tell someone they're writing bad code?MadMAxJr2008-10-15T20:49:00Z2008-10-15T20:49:00ZI like this point, as for this project, 'if it works, it works' will suffice, but I get the feeling that finding an appropriate way to deal with the issue will help a lot more than the initial instinct to point and say 'This is wrong'.http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-codeComment by MadMAxJr on How do you tell someone they're writing bad code?MadMAxJr2008-10-15T20:34:27Z2008-10-15T20:34:27ZI'm not trying to single out any specific incident, nor am I trying to say my code is perfect and awesome, it's just that I feel this is a tricky subject, and I'm very interested in second opinions regarding this matter.