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
~3K People Reached
Favorite Tags
Member Avatar for SBA-CDeCinko

We are currently running a modified version of jShowOff, a jQuery slider. It has never been modified since it was created back in 2009 and lacks a few features we need. I have been searching the latest crop of sliders and haven't found one with the features we need. It …

Member Avatar for pritaeas
0
230
Member Avatar for SBA-CDeCinko

The query below performs fairly quickly, however when hit by several visitors at once causes the SQL Server CPU to spike greatly. How would you rewrite this query to reduce the impact? SELECT * FROM (SELECT TOP 1 a.adID, a.type, a.position, a.image, a.altText, a.caption, a.link, isNull(v.viewCount, 0) AS viewCount FROM …

Member Avatar for BitBlt
0
122
Member Avatar for SBA-CDeCinko

I have a .Net web service which appears to be working fine. I generates a WSDL and I can sucessfully test it locally. I am using the basic code below in CF to consume the service: [CODE]<cfinvoke method="getBannerViews" returnvariable="getBannerViews" webservice="http://www.xzxxxxxxxxx.org/ws/bannerAdViews.asmx?WSDL" refreshwsdl="true">[/CODE] Problem is, I am getting this very long error …

0
71
Member Avatar for SBA-CDeCinko

I have a gridview inside an update panel. I juse the following line to select the entire row to display a detail page. I need the web page to scroll back to the top after clicking the gridview row. So far, I am unable to find a place to add …

0
59
Member Avatar for SBA-CDeCinko

I can use this <%= Request.ServerVariables["SERVER_NAME"] %> to get the server name of the current page. How do I get just the last three characters? All I want is the dev or stg or org part.

Member Avatar for thines01
0
74
Member Avatar for SBA-CDeCinko

I am unable to find information for the following situation and hope someone can give me some help. I have a ListBox, that is in the edit portion of a DetailsView. The ListBox is populated via a SQLDataSource. In the SQLDataSource I am returning an ID, a name and a …

0
60
Member Avatar for chriselectrix

Hi All Ive got an XSL for some XML data. The XML data contains a date field called OrderNum_OrderDate. How can I filter the data so it only displays data from the XML that has a date of TODAY + 7 days. I only want to see information for the …

Member Avatar for SBA-CDeCinko
0
435
Member Avatar for SBA-CDeCinko

With our sites running IIS prior to 7, if someone hits a site with no SSL cert installed via https, they would see the same web page as someone hitting it via http. In IIS 7.5 that changed with bindings so now, under the same conditions, the https request gets …

Member Avatar for SBA-CDeCinko
0
182
Member Avatar for SBA-CDeCinko

The code below works, but is too complex, I'd like to simplify it. How can I make the select portion conditional or how can I use a variable in the select? [CODE] <xsl:choose> <xsl:when test="count(current()/child::* [@isDoc and string(umbracoNaviHide) != '1']) &gt; 0"> <xsl:for-each select="$currentPage/self::* [@isDoc and string(umbracoNaviHide) != '1']"> <h3> …

Member Avatar for xml_looser
0
104
Member Avatar for SBA-CDeCinko

I have a page that displays information about a person and contains a "contact me" form. I don't want anyone to know the email address of the person, that's the reason for the form. My submit button executes some code behind to send the email message. How can I securely …

Member Avatar for Momerath
0
107
Member Avatar for SBA-CDeCinko
Member Avatar for kvprajapati
0
79
Member Avatar for SBA-CDeCinko

I have a ScriptManager tag in my master template. This causes no issue for visitors who have Javascript disabled. As soon as I add EnableHistory="true" to support the saving of history points, Javascript disabled visitors get an error. How can I support both types of users?

0
59
Member Avatar for SBA-CDeCinko

There are hundreds of posts out there about this very same issue and not one provides an acceptable answer to my situation. I have a search page. The user enters or selects some search criteria and clicks the search button. The page posts back, hides the search form which is …

0
59
Member Avatar for SBA-CDeCinko

I have the following scenario and am looking for the best way to structure things. I am finding lots and lots of conflicting advice online. [LIST] [*]I have a user control on my home page for a simple search. [*]I have a user control on a search page for a …

Member Avatar for MichaelWClark
0
106
Member Avatar for SBA-CDeCinko

I have a SQL table that contains spam or naughty word phrases. I'm trying to decide how to take some text and determine if any of the values in the table exist in my text. In the past I have selected all of the phrases out of the database and …

Member Avatar for Geekitygeek
0
125
Member Avatar for SBA-CDeCinko

The following function works fine. [CODE] public int AddRecord(String MsgTo, String MsgFrom, String MsgCC, String MsgBC, DateTime DateSent) { SqlParameter[] sqlParams = new SqlParameter[] { new SqlParameter("@MsgTo", MsgTo), new SqlParameter("@MsgFrom", MsgFrom), new SqlParameter("@MsgCC", MsgCC), new SqlParameter("@MsgBC", MsgBC), new SqlParameter("@DateSent", DateSent), }; return logContactUsMessage.insertMessage(sqlParams); } [/CODE] However, when I try and …

Member Avatar for Momerath
0
173
Member Avatar for SBA-CDeCinko

I need to round down to the nearest quarter hour (or .25 in decimal) via Javascript and have not come across any appropriate code yet. Anyone have a solution?

Member Avatar for SBA-CDeCinko
0
108
Member Avatar for SBA-CDeCinko

I have a DetailsView that I use to update some database data. In the footer of the DetailsView is a label I am trying to use as a status message panel. For instance, I display validation errors in this label. After updating a record, which causes a postback, I am …

Member Avatar for SBA-CDeCinko
0
157
Member Avatar for SBA-CDeCinko

There is a ShowFooter property for the GridView but there does not appear to be the equivalent for the DetailsView. How do we show/hide the footer in a DetailsView?

0
59
Member Avatar for SBA-CDeCinko

How do I trim my values in a gridview edit form before they are updated or inserted into the database? I want to be sure that users do not add extra spaces onto the end of the text or at the begining.

Member Avatar for SBA-CDeCinko
0
163
Member Avatar for SBA-CDeCinko

I have an ASP.NET gridview where I allow the user to edit a record. I need to validate multiple fields as one. I need to require that the user either enter a first and last name OR a company name. All three cannot be blank. Most of the sample code …

Member Avatar for SBA-CDeCinko
0
142