User stephenbayer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:33:14Zhttp://stackoverflow.com/feeds/user/18893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940734/oracle-odp-net-and-double-clicking-hyperlink0Oracle ODP.NET and double clicking hyperlinkstephenbayer2009-06-02T17:11:42Z2009-11-13T13:00:01Z
<p>I've installed ODP.NET and am using the session state service through Oracle for an ASP.NET website. I tested it, I thought, pretty thoroughly and didn't see any major problems. Some of the users have been complaining of exception errors however when they use the system. I added some extra logging and found out how to reproduce the issue. It happens when a user double clicks on a hyperlink. I have never thought about double clicking a hyperlink before in my life and never knew that users like doing that, so I hadn't tested that possibility. This sends 2 identical requests to save a session item, with the same primary key. I'm using ODP.NET 11.1.0 for the .NET 2.0 framework, and the functions being called have been obfuscated by Oracle, so I can't fix it there. Has anyone else had this problem? Does anyone know of a solution, other than to tell the users that you don't double click hyperlinks. </p>
http://stackoverflow.com/questions/277197/asp-net-menu-control-not-rending-correctly-in-safari2asp.net menu control not rending correctly in safaristephenbayer2008-11-10T06:26:41Z2009-11-11T22:51:00Z
<p>The site I'm working on is using a Databound asp:Menu control. When sending 1 menu item it renders HTML that is absolutely correct in Firefox (and IE), but really messed up code in Safari and Chrome. Below is the code that was sent to each browser. I've tested it a few browsers, and they are all pretty similarly rendered, so I am only posting the two variations on the rendering source. </p>
<p><strong>My question is: How do I get ASP.NET to send the same html and javascript to Chrome and Safari as it does to Firefox and IE?</strong></p>
<pre><code><!-- This is how the menu control is defined -->
<asp:Menu ID="menu" runat="server" BackColor="#cccccc"
DynamicHorizontalOffset="2" Font-Names="Verdana" StaticSubMenuIndent="10px" StaticDisplayLevels="1"
CssClass="left_menuTxt1" Font-Bold="true" ForeColor="#0066CC">
<DataBindings>
<asp:MenuItemBinding DataMember="MenuItem" NavigateUrlField="NavigateUrl" TextField="Text"
ToolTipField="ToolTip" />
</DataBindings>
<StaticSelectedStyle BackColor="#0066CC" HorizontalPadding="5px" VerticalPadding="2px"
Font-Names="Verdama" CssClass="left_menuTxt1" Font-Bold="true" />
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="8px" />
<DynamicMenuStyle BackColor="#fbfbfb" BorderColor="#989595" BorderStyle="Inset" BorderWidth="1"
Width="80px" VerticalPadding="1" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" Font-Name="Verdama"
ForeColor="#c6c4c4" CssClass="left_menuTxt1" Font-Bold="true" />
<DynamicSelectedStyle BackColor="#cccccc" HorizontalPadding="5px" VerticalPadding="2px"
Font-Names="Verdama" CssClass="left_menuTxt1" Font-Bold="true" />
</asp:Menu>
<!-- From Safari View Page Source (Chrome source very similar) -->
<span title="Order" class="ctl00_leftNav_menu_4">
<a class="ctl00_leftNav_menu_1 ctl00_leftNav_menu_3"
href="javascript:__doPostBack('ctl00$leftNav$menu','oMy Order')">
My Order
<img src="/WWW/WebResource.axd?d=glUTEfEv7p9OrdeaMxkMzhqz2JugrMr8aE43O2XGHAA1&amp;t=633590571537099818"
alt="Expand My Order"
align="absmiddle"
style="border-width:0px;" /></a></span><br />
<!-- From Firefox View Page Source (IE View page similar) -->
<table>
<tr onmouseover="Menu_HoverStatic(this)"
onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(event)"
title="Order"
id="ctl00_leftNav_menun0">
<td>
<table class="ctl00_leftNav_menu_4" cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;">
<a class="ctl00_leftNav_menu_1 ctl00_leftNav_menu_3"
href="../Order/OrderList.aspx">
My Order
</a>
</td>
<td style="width:0;">
<img src="/WWW/WebResource.axd?d=glUTEfEv7p9OrdeaMxkMzhqz2JugrMr8aE43O2XGHAA1&amp;t=633590571537099818"
alt="Expand My Order" style="border-style:none;vertical-align:middle;" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</code></pre>
<p>Update: My solution post is correct.. but i can't mark my own as correct... so if anyone wants to copy it so I can close this. :)</p>
http://stackoverflow.com/questions/1669216/making-a-pdf-output-in-raster-format-instead-of-vector-using-itextsharp0Making a PDF output in raster format instead of vector using itextsharpstephenbayer2009-11-03T18:22:34Z2009-11-03T19:58:29Z
<p>I have written C# code to save product specifications to a PDF document using iTextSharp, mainly with PdfPTable and Chunks/Paragraphs in the PdfPCells. However, I have been told that the output is unacceptable due to the fact that you can highlight and copy the text from the document and document storage and retrieval server software that they are currently using does not support "Vector" based PDFs. I'm not exactly certain what the difference is between a raster pdf and and vector pdf. Basically, every page of the PDF Document should be an image so that the text can not be highlighted. Is there any way to do this without using the DirectContent? Below is an image, illustrating a portion of the PDF that was created, and how the text can be selected and copied, which is the incorrect functionality.</p>
<p>I would like to avoid directly writing to the canvas, unless there is a way to do this and still have itextsharp handle my formatting and proper paging. </p>
<p>The windows application <a href="http://www.wizards.de/~frank/pdf2r.html" rel="nofollow">PDF2R</a> works well, but doesn't seem to offer any programmatic solutions. I have found libraries that stated that they do this sort of conversion, but are several thousand dollars. I'd like to work within my budget and use the itextsharp or something much cheaper than this. </p>
<p><img src="http://img687.imageshack.us/img687/195/pdfexample.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/353165/converting-virtual-path-to-actual-web-path-in-asp-net1converting virtual path to actual web path in ASP.NETstephenbayer2008-12-09T15:38:26Z2009-09-09T00:39:42Z
<p>I have a virtual path (example: "~/Images/Banner.jpg") and I want to make that an absolute web path (example: "/ApplicationRoot/Images/Banner.jpg"). There is a method that will do this, I believe in a class called something like HTTPUtility or similar name. Though ever time I need this method, it takes me hours searching for it. It would be greatly appreciated if someone could post the proper method to do this so I can favorite this for easy access in the future. </p>
<p>Thank you very much. </p>
http://stackoverflow.com/questions/1296309/understanding-xslt-handling-of-elements-with-attributes1understanding xslt handling of elements with attributesstephenbayer2009-08-18T20:28:18Z2009-08-18T20:46:00Z
<p>I'm having problems understanding xslt. In my source document I have to find the inner text from a <code><p></code> tag with the class attribute that is equal to <code>"deck"</code>. </p>
<p>In my source xml somewhere:</p>
<pre><code><body>
<p class="deck">Text here</p>
... ... cut ... ... ...
</code></pre>
<p>In my xsl file</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:TimeInc="http://www.timeinc.com/namespaces/PAMTimeInc/1.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:prism="http://prismstandard.org/namespaces/basic/2.1/"
xmlns:pam="http://prismstandard.org/namespaces/pam/2.1/"
xmlns:pim="http://prismstandard.org/namespaces/pim/2.1/"
xmlns:prl="http://prismstandard.org/namespaces/prl/2.1/">
<xsl:output method="xml" encoding="utf-8" indent="yes" omit-xml-declaration="yes"/>
<Description>
<xsl:choose>
<xsl:when test="//p@deck != ''">
<xsl:value-of select="//p@deck"/>
</xsl:when>
<xsl:otherwise>
<xsl:text disable-output-escaping="yes"/>
</xsl:otherwise>
</xsl:choose>
</Description>
... ... cut ... ... ...
</code></pre>
<p>It is obviously incorrect because I do not know what I'm doing. Is there an example somewhere as to how to do this or understand it more. </p>
http://stackoverflow.com/questions/1040706/c-windows-form-net-and-dos-console/1040739#10407391Answer by stephenbayer for C# Windows Form .Net and DOS Consolestephenbayer2009-06-24T20:20:25Z2009-06-24T20:20:25Z<p>I've been fooling around with the System.Diagnostics.Process class for calling console based applications and formating and returning the output. I think it will work with Batch files, as well. I'll take a moment here to test that. Here is some sample code:</p>
<pre><code> System.Diagnostics.ProcessStartInfo start = new System.Diagnostics.ProcessStartInfo();
start.UseShellExecute = false;
start.RedirectStandardInput = true;
start.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
start.RedirectStandardOutput = true;
start.FileName = "at";
System.Diagnostics.Process myP = System.Diagnostics.Process.Start(start);
String strOutput = myP.StandardOutput.ReadToEnd();
if (strOutput.Contains("There are no entries in the list."))
{
litMsg.Text = "There are no jobs";
}
else
{
strOutput = strOutput.Replace("\r", "");
foreach (String line in strOutput.Split("\n".ToCharArray()))
{
//(0,7) (7,5)(12, 24) (36, 14) (50, )
//Status ID Day Time Command Line
//-------------------------------------------------------------------------------
// 1 Tomorrow 3:00 AM dir *
if (line.Length > 50)
{
String Status = line.Substring(0, 7);
String ID = line.Substring(7, 5);
String Day = line.Substring(12, 24);
String Time = line.Substring(35, 14);
String Command = line.Substring(49);
}
}
}
</code></pre>
http://stackoverflow.com/questions/269611/both-datasource-and-datasourceid-are-defined-error-using-asp-net-gridview3"Both DataSource and DataSourceID are defined" error using ASP.NET GridViewstephenbayer2008-11-06T17:51:10Z2009-04-24T07:12:16Z
<p>"Both DataSource and DataSourceID are defined on 'grdCommunication'. Remove one definition."</p>
<p>I just got this error today, the code has been working until this afternoon I published the latest version to our server and it broke with that error both locally and on the server. I don't use "DataSourceID", the application reads database queries into a datatable and sets the datatable as the DataSource on the GridViews. I did a search in Visual Studio, searching the entire solution and the string "DataSourceID" does not appear in even 1 line of code in the entire solution. This is the first thing that freaked me out. </p>
<p>I figure it had been working yesterday, so I reverted the code to yesterday's build. The error was still there. I kept going back a build, and still the issue is there. I went back a month, I am still getting the same error. This application was working fine this morning? There has really been no code changes, and no where in the application is the DataSourceID EVER set on any of the gridviews. Has anyone ever seen anything like this at all??</p>
<p>How can I get that error if DataSourceID is never set... and the word "DataSourceID" is not in my solution? I just did a wingrep on the entire tree doing a case insensitive search on datasourceid.... pulled up absolutely nothing. That word is absolutely no where in the entire application. </p>
<pre><code> <asp:GridView ID="grdCommunication" runat="server"
Height="130px" Width="100%"
AllowPaging="true" >
... standard grid view column setup here...
</asp:GridView>
// Code behind.. to set the datasource
DataSet dsActivity = objCompany.GetActivityDetails();
grdCommunication.DataSource = dsActivity;
grdCommunication.DataBind();
</code></pre>
<p>// Updated: removed some confusing notes. </p>
http://stackoverflow.com/questions/703036/modifying-file-before-subversion-commit1Modifying File Before Subversion Commitstephenbayer2009-03-31T21:01:44Z2009-04-01T04:03:51Z
<p>I am using TortoiseSVN for Windows and want to figure out if I can set up some sort of macro to modify one of the files in the repository on a commit. </p>
<p>In my subversion repository I have a XML File called "Web.Config". There are a few nodes with the tag name "add" set up in that XML document which represents the "Build Number", "Build Description" and "Last Build Date" under the XML Path /Configuration/appSettings. This XML file uses the "key" attribute on the "add" node to determine which of these settings are being set. </p>
<p>The above mentioned nodes are being changed by hand before each commit (supposedly, but I don't always do this). </p>
<p>My question is:
Is it possible to modify these settings in the file when I commit?</p>
http://stackoverflow.com/questions/686305/converting-a-list-of-base-type-to-a-list-of-inherited-type2Converting a List of Base type to a List of Inherited Typestephenbayer2009-03-26T15:36:38Z2009-03-26T17:12:05Z
<p>I would be certain that this question addresses something that would have been brought up in a previous question, but I was unable to find it.</p>
<p>There is a method in a C# class that takes as a parameter a generic List of a Base Class. I need to pass a list of an inherited class and do not know exactly how to do this. I am getting an error in my attempts. Below is sample code to illustrated this:</p>
<pre><code>public class A
{
public static void MethodC(List<A>)
{
// Do Something here with the list
}
}
public Class B : A
{
// B inherits from A, A is the Base Class
}
// Code utilizing the above method
List<B> listOfB = new List<B>();
A.MethodC( (List<A>) listOfB ); // Error: this does not work
A.MethodC( listOfB.ToList<typeof(A)>() ); // Error: this does not work
A.MethodC( listOfB.ConvertAll<A>(typeof(A)) ); // Error: this does not work
// how can I accomplish this? It should be possible I would think
</code></pre>
<p>Note: Here is my final working Method as a reference. I got an even better solution to my problem, but technically it wasn't an answer to the question, since my question was phrased impropertly. </p>
<pre><code> public static DataTable
ObjectCollectionToDataTable<GLIST>
(List<GLIST> ObjectCollection) where GLIST
: BaseBusinessObject
{
DataTable ret = null;
if (ObjectCollection != null)
{
foreach ( var b in ObjectCollection)
{
DataTable dt = b.ToDataTable();
if (ret == null)
ret = dt.Clone();
if (dt.Rows.Count > 0)
ret.Rows.Add(dt.Rows[0].ItemArray);
}
}
return ret;
}
</code></pre>
http://stackoverflow.com/questions/466159/passing-a-datatable-as-a-field-from-oracle-to-net1passing a datatable as a field from Oracle to .NETstephenbayer2009-01-21T17:15:53Z2009-03-25T13:44:23Z
<p>In a .NET Datatable, the columns are Object types, which can include a datatable as a valid type for a column. So you can create a fairly complex structure:</p>
<pre><code>CompanyID (Integer) | CompanyName (String) | OrderRecords (DataTable)
---------------------------------------------------------------------------
1 | Acme Corp. | DataTable of Orders
</code></pre>
<p>When calling an Oracle stored procedure, is there any way to return such a structure. I tried using the inline views, but it wouldn't let me. Example:</p>
<pre><code>refCursor IS ref CURSOR;
PROCEDURE GETCOMPANYLIST (
CompanyCursor OUT refCursor
)
AS
BEGIN
Open CompanyCursor For
SELECT COMPANYID, COMPANYNAME,
(SELECT * FROM ORDERS WHERE CompanyID = CompanyID) OrderRecords
WHERE IsActive = 'T';
END GETCOMPANYLIST;
</code></pre>
<p>This doesn't work, but is there any way to do what I am trying to do here?
Currently, I have to get back the List of Companies in one call to the database, then loop through all the records and make individual calls to get each list of Orders. </p>
<p>[Added valid answer - until now there was no answer actually answering the question]</p>
http://stackoverflow.com/questions/466159/passing-a-datatable-as-a-field-from-oracle-to-net/681634#6816340Answer by stephenbayer for passing a datatable as a field from Oracle to .NETstephenbayer2009-03-25T13:35:41Z2009-03-25T13:44:23Z<p>I asked this question a relatively long time ago (a couple months ago), then when I didn't get a response that worked for me I went back to sending multiple data tables and "reassembling" them on the application side the way it needed to be handled. However, I found an answer to this question and had to share it with the community here. Oracle's support for XML since version 9 is absolutely incredible and in particular the DBMS_XMLQuery package can be used to solve the problem I listed above by parsing and sending the select statements back as an XML dataset that can be easily converted on the Application side by .NET effortlessly. Here is the example code from a test stored proc I recently wrote:</p>
<pre><code>SELECT COMPANYID, COMPANYNAME,
DBMS_XMLQuery.GetXML(
'SELECT * FROM ORDERS WHERE CompanyID = '
|| COMPANY.COMPANYID )
OrderRecords
FROM COMPANY
WHERE lower(COMPANYNAME) LIKE '%shawn%';
</code></pre>
<p>This will Return something like the following (Just pull OrderRecords in as a string and covert to DataTable:</p>
<pre><code>CompanyID | CompanyName | OrderRecords
---------------------------------------------------------------------------
1051 | Shawns Company | XML String Returned, listed below
<?xml version = '1.0'?>
<ROWSET>
<ROW num="1">
<ORDERID>500020</ORDERID>
<NOTES>Test Note</NOTES>
<!-- Additional fields cut out Not necessary for example -->
</ROW>
<ROW num="2">
<ORDERID>500021</ORDERID>
<NOTES>Test Note 2</NOTES>
<!-- Additional fields cut out Not necessary for example -->
</ROW>
<ROW num="3">
<ORDERID>500280</ORDERID>
<NOTES>notes test</NOTES>
<!-- Additional fields cut out Not necessary for example -->
</ROW>
<!-- Additional Rows cut out Not necessary for example -->
</ROWSET>
</code></pre>
<p>There is a lot more to the DBMS_XMLQuery package besides this one very cool function. It is definitely worth checking out.</p>
http://stackoverflow.com/questions/644243/javascript-date-parsing2javascript date parsingstephenbayer2009-03-13T19:26:23Z2009-03-13T19:33:19Z
<p>I'm having issues parsing dates after 01/01/2000. The results are being returned incorrectly. Basically, 1999 is getting parsed as the year 1999, when it gets to 2000 it is parsing it as 0100, and then 2001 as 0101, etc. Here is the test code to illustrate this issue:</p>
<pre><code><script type="text/javascript" language="javascript">
// functions incorrect changes year from 2010 to 0101
var d = (new Date("12/01/2009"));
if (d.getMonth() < 11)
{ d = new Date(d.getYear(), d.getMonth() + 1, 1); }
else
{ d = new Date(d.getYear() + 1, 0, 1); }
document.write(d);
// Result: Sat Jan 01 0101 00:00:00 GMT-0500 (Eastern Standard Time)
document.write('<br />');
document.write(Date.parse(Date()) < Date.parse(d));
//
// Result: false today should definately be < 01/01/2010
document.write('<br />');
// Functions correctly if year is before 2000
var d = (new Date("12/01/1998"));
if (d.getMonth() < 11)
{ d = new Date(d.getYear(), d.getMonth() + 1, 1); }
else
{ d = new Date(d.getYear() + 1, 0, 1); }
document.write(d);
// Result: Fri Jan 01 1999 00:00:00 GMT-0500 (Eastern Standard Time)
document.write('<br />');
document.write(Date.parse(Date()) < Date.parse(d));
// false
</script>
</code></pre>
http://stackoverflow.com/questions/537225/retreiving-id-of-a-newly-inserted-row-in-filemaker-pro0Retreiving ID of a newly inserted row in Filemaker Prostephenbayer2009-02-11T15:07:14Z2009-02-15T20:25:13Z
<p>There is a service running which monitors files in a folder on a server. Whenever files are copied to this folder, the files are moved and a record is written to a filemaker pro database through an ODBC connection. In that same process I need the ID of the newly created row to create a related record in another table (with a foreign key constraint). In Microsoft SQL Server, I'd use @@identity to do this, in Oracle, I'd use the sequence.CURRVAL. How would I get the identity field of a newly created row in Filemaker?</p>
http://stackoverflow.com/questions/250603/forcing-targetcontrol-textbox-to-use-a-value-in-the-autocompleteextender1Forcing TargetControl Textbox to use a value in the AutocompleteExtenderstephenbayer2008-10-30T15:30:24Z2009-02-12T23:41:36Z
<p>I'm sure I'm going to have to write supporting javascript code to do this. I have an autocomplete extender set up that selects values from a database table, when a selection is made, i would like it to set the ID of the value selected to a hidden control. I can do that by handling a value change on the text box and making a select call to the database, Select idCompany from Companies Where CompanyName = "the text box value"; </p>
<p>The most important thing is to constrain the values of the text box that is the targetcontrol for the autocomplete extender to ONLY use values from the autocomplete drop down. Is this possible with that control, is there examples somewhere? is there a better control to use (within the ajax control toolkit or standard .net framework - not a third party control)?</p>
<p>I'm going to be trying to work out some javascript, but I'll be checking back to this question to see if anyone has some useful links. I've been googling this last night for quite a while.</p>
<p>Update: I did not get an answer or any useful links, I've posted an almost acceptable user control that does what I want, with a few workable issues. </p>
http://stackoverflow.com/questions/533965/why-is-security-through-obscurity-a-bad-idea/537260#5372600Answer by stephenbayer for Why is security through obscurity a bad idea?stephenbayer2009-02-11T15:14:46Z2009-02-11T15:14:46Z<p>I argued in one case that password protection is really security through obscurity. The only security I can think of that wouldn't be STO is some sort of biometric security. </p>
<p>Besides that bit of semantics and nit picking, STO (Security through obscurity) is obviously bad in any case where you need real security. However, there might be cases where it doesn't matter. I'll often XOR pad a text file i don't want anyone reading. But I don't really care if they do, i'd just prefer that it not be read. In that case, it doesn't matter, and an XOR pad is a perfect example of an easy to find out STO. </p>
http://stackoverflow.com/questions/188889/autocompleteextender-in-asp-net-additional-info0AutoCompleteExtender in ASP.NET additional infostephenbayer2008-10-09T19:45:35Z2009-01-29T20:07:41Z
<p>how do I pass additional information to the service method returning the collection of items? I'll attempt to explain what I mean, I have 2 text boxes on a form, I need to fill out names, based of a specific account id in a database. so, I need to pass an integer to the getNamesForDropDown method. I couldn't figure out what to do, so I did the wrong thing, and used the CompletionSetCount to actually pass the information I needed:</p>
<pre><code>[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public string[] getNamesForDropDown(string prefixText, int count)
{
String sql = "Select fldName From idAccountReps Where idAccount = " + count.ToString();
//... rest of the method removed, this should be enough code to understand
//... the evil wrongness I did.
}
</code></pre>
<p>in my front side aspx file, i set the CompletionSetCount based off the Account id the user is currently viewing on that page. </p>
<pre><code><ajaxtk:AutoCompleteExtender
runat="server"
ID="AC1"
TargetControlID="txtAccName"
ServiceMethod="getNamesForDropDown"
ServicePath="AccountInfo.asmx"
MinimumPrefixLength="1"
EnableCaching="true"
CompletionSetCount='<%# Eval("idAccount") %>'
/>
</code></pre>
<p>So, that's definitely a wrong way... what would be the right way?</p>
http://stackoverflow.com/questions/247438/alternative-ui-control-for-large-data-lists-instead-of-dropdownlist2Alternative UI control for large data lists instead of DropDownListstephenbayer2008-10-29T16:17:34Z2009-01-29T20:06:52Z
<p>I am using C# and ASP.NET with version 2.0 of the .NET Framework library on this particular project. We are also using the AjaxControlToolkit. The AjaxControlToolkit should have the controls available to make a descent User Interface solution to the problem I'm facing. </p>
<p>I have run into this in a few projects in the last year, and used different solutions in the past. The current design of the project I just picked up, is that there is an <asp:DropDownList> control and on page load a Database call is made to get a list of values. This is then bound using DropDownList's datasource. The problem is that there is 25k items returned from the database. First thing, that's not acceptable for a user to have to scroll through tens of thousands of items. But, even more importantly, is that in every browser that it is tested on (IE 7, FF 3, Safari, and Chrome) the browser completely hangs as it is propagating the dropdownlist items. </p>
<p>What I'm thinking is using a <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ModalPopup/ModalPopup.aspx" rel="nofollow">Modal Popup</a> form, which an <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx" rel="nofollow">Autocomplete Extender</a> that allows the user to drill down to a specific company. So, in the field where they have to choose a company, they click on a "select company" icon, the modal form comes up, letting them use the autocomplete extender to select an existing company. They click "Ok" and it save the value to the field. </p>
<p>However, I'm an old school command line/shell/terminal guy, and my ideas of acceptable UI design might be skewed (give me a command prompt on any system, and I'm good to go). I would like the advice of those in the community here as to what they think would be an acceptable solution, or if they have faced other issues like this. </p>
http://stackoverflow.com/questions/283311/source-control-with-visual-studio-switch-from-visualsvn-to-ankh/466055#4660550Answer by stephenbayer for Source Control with Visual Studio: switch from VisualSVN to Ankh?stephenbayer2009-01-21T16:51:31Z2009-01-21T16:51:31Z<p>Honestly, I didn't like much of any of the SVN add ons for Visual Studio. I ended up just customizing my own set of macros to do anything I need to do, and adding menu items and custom context menus, for commits, updates, show logs and the such. I used Tortoise and integrated with the command line tools. It was easy to do, involving integration with command line calls to TortoiseProc.exe. However, I'm sure that integrating with svn.exe or other command line based svn clients would be just as easy. Plus you get the added advantage of having it set up how you think and work rather than the packaged up stuff. I'll continue to use customized macros until I find some better subversion integration tools. </p>
http://stackoverflow.com/questions/461901/asp-net-control-to-html-tag-equivalent8ASP.NET Control to HTML tag equivalentstephenbayer2009-01-20T15:59:58Z2009-01-20T19:05:16Z
<p>I'm looking for a cheat sheet that will allow me to show an HTML designer the equivalent asp.net controls for standard HTML tags. As an example the <asp:Panel> will render as an HTML <div> and an <asp:Label> will render as an HTML <span>. I've been googling this to no avail. Can someone post a link to a good cheat sheet so that the designers on this project can understand the markup on the aspx pages more clearly. </p>
<p>To be clear, I would like a link to a list of major ASP.NET controls, with descriptions as to how they would relate to standard HTML. It would be great if this were in PDF format or on an easy to read and print web page. The reason, in my case, would be that we have a PHP developer who is very familiar with HTML coming to work on our project, and I feel it would be useful to have a better understanding of standard ASP.NET server controls if I could hand him such a "cheat sheet". </p>
<p>I'm referring mainly to the .NET 2.0 framework, but we are also doing work with 3.0/3.5.</p>
http://stackoverflow.com/questions/413927/asp-net-unit-test-woes-odd-exception-error0ASP.NET Unit test woes (odd exception error)stephenbayer2009-01-05T17:52:37Z2009-01-16T21:39:17Z
<p>I have created a new solution with a minimal amount of code that represents the issue I am having. This is the simplest I could get it down to.</p>
<pre><code>namespace EntServ.BusinessObjects
{
/// <summary>
/// Summary description for EntServSession
/// </summary>
public class EntServSession
{
public EntServSession()
{
}
public static EntServSession Login(string username, string password)
{
EntServSession ret = null;
if (username == "test" && password == "pass")
ret = new EntServSession();
return ret;
}
}
}
</code></pre>
<p>I started with a new solution, and created one class in the App_Code folder with one static method similar to one of the methods I was having an issue with. I right-clicked on the classname, and click "Create Unit Tests...". It offered to create a new Test project for me, I accepted the defaults and clicked okay. It generated the following file:</p>
<pre><code>using EntServ.BusinessObjects;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting.Web;
using System.Data;
namespace EntServObjectTests
{
/// <summary>
///This is a test class for EntServSessionTest and is intended
///to contain all EntServSessionTest Unit Tests
///</summary>
[TestClass()]
public class EntServSessionTest
{
private TestContext testContextInstance;
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}
#region Additional test attributes
//
//You can use the following additional attributes as you write your tests:
//
//Use ClassInitialize to run code before running the first test in the class
//[ClassInitialize()]
//public static void MyClassInitialize(TestContext testContext)
//{
//}
//
//Use ClassCleanup to run code after all tests in a class have run
//[ClassCleanup()]
//public static void MyClassCleanup()
//{
//}
//
//Use TestInitialize to run code before running each test
//[TestInitialize()]
//public void MyTestInitialize()
//{
//}
//
//Use TestCleanup to run code after each test has run
//[TestCleanup()]
//public void MyTestCleanup()
//{
//}
//
#endregion
/// <summary>
///A test for Login
///</summary>
// TODO: Ensure that the UrlToTest attribute specifies a URL to an ASP.NET page (for example,
// http://.../Default.aspx). This is necessary for the unit test to be executed on the web server,
// whether you are testing a page, web service, or a WCF service.
[TestMethod()]
[HostType("ASP.NET")]
[AspNetDevelopmentServerHost("%PathToWebRoot%\\EntServ2-ASP.NET\\trunk\\WWW", "/WWW")]
[UrlToTest("http://localhost/WWW")]
public void LoginTest()
{
string username = string.Empty; // TODO: Initialize to an appropriate value
string password = string.Empty; // TODO: Initialize to an appropriate value
EntServSession expected = null;
EntServSession actual = EntServSession_Accessor.Login(username, password);
Assert.AreEqual(expected, actual);
Assert.Inconclusive("Verify the correctness of this test method.");
}
}
}
</code></pre>
<p>I tried running the test and it tries to compile and I get the build error:</p>
<pre><code>Error 1
The type or namespace name 'EntServSession' could not be found
(are you missing a using directive or an assembly reference?) C:\Projects\EntServ-ASP.NET\trunk\Tests\EntServObjectTests\EntServSessionTest.cs
82
13
EntServObjectTests
</code></pre>
<p>I publish the web site and put a reference to the App_code.dll in the test project and I no longer get a build error. I instead get the following exception error. I put break points on every line of the class, and the debugger does not stop on any line .</p>
<pre><code>Error Message
Test method EntServObjectTests.EntServSessionTest.LoginTest threw exception: System.InvalidCastException: Unable to cast object of type 'EntServ2.BusinessObjects.EntServSession' to type 'EntServ2.BusinessObjects.EntServSession'..
Stack Trace
EntServ2.BusinessObjects.EntServSession_Accessor.Login(String username, String password)
EntServObjectTests.EntServSessionTest.LoginTest() in C:\Projects\EntServ2-ASP.NET\trunk\Tests\EntServObjectTests\EntServSessionTest.cs: line 83
</code></pre>
http://stackoverflow.com/questions/407639/oracle-database-to-class-diagram1Oracle Database to Class Diagramstephenbayer2009-01-02T18:28:12Z2009-01-07T17:35:06Z
<p>We are using an oracle database in a project. Most of the tables represents classes or objects in the application. The application currently doesn't have a substantial amount of documentation. I am using StarUML to make up some class diagrams and such for other developers on the project to increase their understanding of the overall project. Using the database tables as a starting guide, and then making modifications to the diagrams as needed would be the absolute easiest and quickest way to get these set up. Is there any free applications that could assist me in pulling the schema out of the Oracle database and create class diagrams from them? Currently, there are 98 "objects" or classes closely modeled in the database and to create these all in a modeling application from scratch would be very time consuming. </p>
http://stackoverflow.com/questions/401079/adding-sort-keys-and-filter-to-oracle-stored-procedure1Adding Sort Keys and Filter to Oracle Stored Procedurestephenbayer2008-12-30T18:44:15Z2009-01-02T17:42:33Z
<p>I have a stored procedure in Oracle that returns a select statement cursor reference. I want to be able to pass column names and sort direction (example: 'CompanyName DESC') and be able to sort the results, or pass a filter such as 'CompanyID > 400' and be able to apply that to the select statement. what is the best way to accomplish this? This table is in an old database and has 90 columns, and I don't want to do logic for every possible combination. </p>
http://stackoverflow.com/questions/387233/setting-focus-on-postback-initiated-by-javascript/401086#4010860Answer by stephenbayer for Setting focus on postback initiated by javascriptstephenbayer2008-12-30T18:49:16Z2008-12-30T18:49:16Z<p>i have found the solution for this one. In the code behind event handler being called for each particular item, I call the Control.Focus() as the last line. For instance, if a dropdownlist event handler is being triggered, and the next control to get focused is the zipcode text box:</p>
<pre><code>protected void ddl_state_selectedValueChanged(Object sender, EventArgs e)
{
// ... here is all my code for the event handler
txtZipCode.Focus();
}
</code></pre>
<p>It was much easier that I what I was trying to do. I keep trying to overcomplicate things by creating Javascript on the fly that does exactly what Microsoft is already doing for me in the Framework. </p>
http://stackoverflow.com/questions/387233/setting-focus-on-postback-initiated-by-javascript0Setting focus on postback initiated by javascriptstephenbayer2008-12-22T20:18:25Z2008-12-30T18:49:16Z
<p>I am working with ASP.NET doing some client side javascript.<br />
I have the following javascript to handle an XMLHTTPRequest callback. In certain situations, the page will be posted back, using the __doPostBack() function provided by ASP.NET, listed in the code below. However, I would like to be able to set the focus a dropdownlist controls after the post back occurs. Is there a way to set this using Javascript, or do I need to rig that up some other way. </p>
<pre><code> function onCompanyIDSuccess(sender, e) {
if (sender == 0)
document.getElementById(txtCompanyIDTextBox).value = "";
document.getElementById(txtCompanyIDHiddenField).value = sender;
if (bAutoPostBack) {
__doPostBack(txtCompanyIDTextBox, '');
}
}
</code></pre>
http://stackoverflow.com/questions/204814/is-there-any-valid-reason-to-ever-ignore-a-caught-exception26Is there any valid reason to ever ignore a caught exceptionstephenbayer2008-10-15T14:02:40Z2008-12-10T21:15:22Z
<p>Wow, I just got back a huge project in C# from outsourced developers and while going through my code review my analysis tool revealed bunches of what it considered bad stuff. One of the more discouraging messages was:</p>
<pre><code>Exceptions.DontSwallowErrorsCatchingNonspecificExceptionsRule : 2106 defects
</code></pre>
<p>The developers assure me they had good reason for all the empty catch blocks, that sometimes the try with empty catch blocks are just there to ignore useless exceptions and keep the application from crashing. I feel this is a cop out and complete BS. Some of the examples I actually looked up were database calls where the record was being saved to the database, and in this case, if an exception was ignored, the user would get back an okay prompt, think everything was okay, and continue on with their work. In reality, their work was never saved. I think this is absolutely the most horrible kind of error. In this case, they are completely wrong in throwing that code in a try with an empty catch block. But my question is, "Is this EVER acceptable in ANY situation?" I think not, but I've been known to be wrong. </p>
http://stackoverflow.com/questions/344881/firing-asp-net-events-from-javascript2firing ASP.NET Events from javascriptstephenbayer2008-12-05T19:33:10Z2008-12-05T19:50:26Z
<p>I'm doing some straight up asynchronous calls from javascript using the XMLHTTPRequest object. On success, with certain return values, I would like to do an asynchonous post back on an update panel and run some server side methods. This is about how I'm implementing it now:</p>
<pre><code><script language="javascript">
function AjaxCallback_Success(objAjax) {
if (objAjax.responseText == "refresh") {
document.getElementById('<%= btnHidden.ClientID %>').click();
}
}
</script>
<asp:UpdatePanel ID="upStatus" runat="server">
<ContentTemplate>
<asp:Button ID="btnHidden" runat="server" style="display: none;" OnClick="SomeMethod" />
<asp:DropDownList ID="ddlStatus" field="Orders_Status" parent="Orders" runat="server">
</asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
<p>This has to do with work flow. If while you are working on an order, someone invoices it, then the options available in the status drop down actually changes. So a timed even checks for changes and if there is a change, which wouldn't normally happen, the update panel posts back and the drop down list gets re-bound to a new data table based on various return values from the ajax response text. </p>
<p>My original code is actually much more complicated than this, but I've abstracted just enough to make my concept clearer. Is there a better, cleaner way to do this by dropping the hidden button and making a straight javascript call that will cause an update panel to asynchonously postback and run a server side method?</p>
http://stackoverflow.com/questions/241622/paging-with-oracle4Paging with Oracle stephenbayer2008-10-27T22:37:21Z2008-11-12T21:38:33Z
<p>I am not as familiar with Oracle as I would like to be. I have some 250k records, and I want to display them 100 per page. Currently I have one stored procedure which retrieves all quarter of a million records to a dataset using a data adapter, and dataset, and the dataadapter.Fill(dataset) method on the results from the stored proc. If I have "Page Number" and "Number of records per page" as integer values I can pass as parameters, what would be the best way to get back just that particular section. Say, if I pass 10 as a page number, and 120 as number of pages, from the select statement it would give me the 1880th through 1200th, or something like that, my math in my head might be off. </p>
<p>I'm doing this in .NET with C#, thought that's not important, if I can get it right on the sql side, then I should be cool. </p>
<p>Update: I was able to use Brian's suggestion, and it is working great. I'd like to work on some optimization, but the pages are coming up in 4 to 5 seconds rather than a minute, and my paging control was able to integrate in very well with my new stored procs. </p>
http://stackoverflow.com/questions/277197/asp-net-menu-control-not-rending-correctly-in-safari/277231#2772312Answer by stephenbayer for asp.net menu control not rending correctly in safaristephenbayer2008-11-10T06:47:35Z2008-11-10T07:05:11Z<p>I found this solution from a comment on <a href="http://weblogs.asp.net/dannychen/archive/2005/11/21/using-device-filters-and-making-menu-work-with-safari.aspx" rel="nofollow">weblogs.asp.net</a>.
It might be a hack, but it does work.</p>
<p>This cross browser compatibility struggle is getting upsetting. </p>
<pre><code> if (Request.UserAgent.IndexOf("AppleWebKit") > 0)
{
Request.Browser.Adapters.Clear();
}
</code></pre>
<p>If anyone has a better solution that's not so much a hack, I would be grateful if you posted it. And from my extensive web searches, it looks like I'm not alone with this problem with the menu control, so some good references would help out others in the same situation. </p>
http://stackoverflow.com/questions/277016/poor-safari-rendering0Poor Safari Renderingstephenbayer2008-11-10T03:41:20Z2008-11-10T04:46:24Z
<p>I'm having major rendering issues in Safari with the web application I'm working on. Most of the design is done with divs using absolute positioning. This renders fine on Internet Explorer, Firefox, Chrome, Opera, Netscape, and konqueror. In Safari, it's just a jumbled mess. </p>
<p>Does Safari lack support for absolute positioning of div elements? </p>
<p>What is the best way to trouble shoot and find out what is going on with the safari browser?
<img src="http://sabayer.googlepages.com/browser_diffs.jpg" alt="alt text" /></p>
<p>UPDATE: I'd like to note I did find the issue, and I would like to thank everyone that gave suggestions. It was the WebKit's "Inspect Element" that gave the most useful information. It appears that their were conflicts with inline styles and styles from the CSS. While safari grabed the styles from the .css file, the rest of the browsers were using the inline styles. i was able to see those conflicts with the information in the tool that was suggested. </p>
http://stackoverflow.com/questions/276907/starting-iphone-app-development-in-linux/276937#2769371Answer by stephenbayer for Starting iPhone app development in Linux?stephenbayer2008-11-10T02:39:59Z2008-11-10T02:49:01Z<p>It seems to be true so far. The only SDK available from Apple only targets the MacOS environment. I've been upset about that, but I'm looking into buying a mac now, just to do iPhone development. I really dislike what they are doing, and I hope a good SDK come out for other environments, such as Linux and Windows. </p>
<p><a href="http://www.linux.com/feature/131752" rel="nofollow">Here's an article about their general ungoodness regarding the SDK</a></p>
<p>I think it's rather elitist for them to think only macos users are good enough to write programs for their phone, and the fact you need to buy a $100 license if you want to publish your stuff, really makes it more difficult for the hobbyist programmer. Though, if that's what you need to do, I'm planning on jumping through their hoops; I'd really like to get some stuff developed on my iPhone. </p>
http://stackoverflow.com/questions/1669216/making-a-pdf-output-in-raster-format-instead-of-vector-using-itextsharp/1669303#1669303Comment by stephenbayer on Making a PDF output in raster format instead of vector using itextsharpstephenbayer2009-11-03T18:38:22Z2009-11-03T18:38:22Zi do not believe that is going to work because, like the DirectContent, that will totally negate the pdf generation libraries ability to format, word wrap, and paginate the document properly. http://stackoverflow.com/questions/1296309/understanding-xslt-handling-of-elements-with-attributes/1296330#1296330Comment by stephenbayer on understanding xslt handling of elements with attributesstephenbayer2009-08-18T21:06:23Z2009-08-18T21:06:23ZI'm reading up w3schools right now, but am having difficulty understanding the language and concepts. their "try it" section is allowing me to gain understanding though, by making changes and seeing what the change does. I'm reading up on XPath as well. http://stackoverflow.com/questions/1296309/understanding-xslt-handling-of-elements-with-attributes/1296332#1296332Comment by stephenbayer on understanding xslt handling of elements with attributesstephenbayer2009-08-18T20:44:44Z2009-08-18T20:44:44Zthank you very much, the final code ended up being: <Description>
<xsl:for-each select="//p[@class='deck']" >
<xsl:copy >
<xsl:apply-templates/>
</xsl:copy>
</xsl:for-each>
</Description>
http://stackoverflow.com/questions/703036/modifying-file-before-subversion-commitComment by stephenbayer on Modifying File Before Subversion Commitstephenbayer2009-04-01T12:45:58Z2009-04-01T12:45:58ZI'm looking through the viability of the solutions now. http://stackoverflow.com/questions/686305/converting-a-list-of-base-type-to-a-list-of-inherited-type/686316#686316Comment by stephenbayer on Converting a List of Base type to a List of Inherited Typestephenbayer2009-03-26T15:47:37Z2009-03-26T15:47:37Zthis works because ((List<A>)listOfB.Cast<A>()) gives me what I want when I explicitly cast it as a List.
http://stackoverflow.com/questions/686305/converting-a-list-of-base-type-to-a-list-of-inherited-type/686315#686315Comment by stephenbayer on Converting a List of Base type to a List of Inherited Typestephenbayer2009-03-26T15:45:49Z2009-03-26T15:45:49Znow, it doesn't need to modify the list, it foreachs through the collection and calls abstract methods on each one.
http://stackoverflow.com/questions/686305/converting-a-list-of-base-type-to-a-list-of-inherited-type/686330#686330Comment by stephenbayer on Converting a List of Base type to a List of Inherited Typestephenbayer2009-03-26T15:45:05Z2009-03-26T15:45:05ZI don't think that is true, it works fine. My method call works loops through the collection and acts on abstract (override) methods and properties. I used the code above in a previous response, and it works great. the project is .NET 2.0 with CSC.exe (C#) 3.0 as the compiler.
http://stackoverflow.com/questions/686305/converting-a-list-of-base-type-to-a-list-of-inherited-type/686315#686315Comment by stephenbayer on Converting a List of Base type to a List of Inherited Typestephenbayer2009-03-26T15:40:53Z2009-03-26T15:40:53ZI do not think I have linq, but it worked anyway. thank you very much for your quick response.
http://stackoverflow.com/questions/537225/retreiving-id-of-a-newly-inserted-row-in-filemaker-pro/542520#542520Comment by stephenbayer on Retreiving ID of a newly inserted row in Filemaker Prostephenbayer2009-02-18T20:31:03Z2009-02-18T20:31:03ZThis worked for my situation.
http://stackoverflow.com/questions/537225/retreiving-id-of-a-newly-inserted-row-in-filemaker-pro/542520#542520Comment by stephenbayer on Retreiving ID of a newly inserted row in Filemaker Prostephenbayer2009-02-12T21:31:25Z2009-02-12T21:31:25ZI'm currently seeing if this will work in my situation. http://stackoverflow.com/questions/537225/retreiving-id-of-a-newly-inserted-row-in-filemaker-pro/542520#542520Comment by stephenbayer on Retreiving ID of a newly inserted row in Filemaker Prostephenbayer2009-02-12T21:29:14Z2009-02-12T21:29:14Zthis might work functionally, but There is race conditions in this situation mentioned where if another row is inserted in between the initial write and the checking of the ID, there might be issues.. though if they are one right after another, i don't see how it would be an issue, just possibly.http://stackoverflow.com/questions/537225/retreiving-id-of-a-newly-inserted-row-in-filemaker-proComment by stephenbayer on Retreiving ID of a newly inserted row in Filemaker Prostephenbayer2009-02-11T16:12:56Z2009-02-11T16:12:56Zreally, no one knows?
http://stackoverflow.com/questions/466159/passing-a-datatable-as-a-field-from-oracle-to-net/466254#466254Comment by stephenbayer on passing a datatable as a field from Oracle to .NETstephenbayer2009-01-21T18:08:23Z2009-01-21T18:08:23ZIt works! I figured it out. But your suggestion was what I did. http://stackoverflow.com/questions/466159/passing-a-datatable-as-a-field-from-oracle-to-net/466254#466254Comment by stephenbayer on passing a datatable as a field from Oracle to .NETstephenbayer2009-01-21T17:58:37Z2009-01-21T17:58:37ZThis is exactly where I'm going. It's not working correctly so far, but it's almost there.
http://stackoverflow.com/questions/466159/passing-a-datatable-as-a-field-from-oracle-to-net/466236#466236Comment by stephenbayer on passing a datatable as a field from Oracle to .NETstephenbayer2009-01-21T17:57:58Z2009-01-21T17:57:58ZThis is true, but I'm interfacing with a method that only excepts a DataTable as a parameter, so I can't pass it as a dataset, unfortunately. I've almost got it, though. I'm creating the dataset from an adapter, using multiple select cursors, and then piecing together in data layer.