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
~2K People Reached
Favorite Tags
Member Avatar for progtick

I am using a code similar to the one below inside my stored procedure: [CODE]declare @tempVar decimal select @tempVar = amount from tempTable where <<conditions>> IF (CONDITIONAL STATEMENT) BEGIN select @tempVar END [/CODE] now I am supposed to be getting 4.25 something and I get 4, when I can clearly …

Member Avatar for happygeek
0
646
Member Avatar for progtick

this open source thing I am using uses typical contains formsof inflections. I will post the exact syntax if you want. However, it does not do partial word search. How do I incorporate wild-card search with contains formsof inflections?

Member Avatar for sknake
0
172
Member Avatar for progtick

I have an ascx control that inherits from ValidatableUserControl. I have several requiredfieldvalidators on the page, and all of them are getting fired except the one inside an asp:panel This code is inside a <table> [CODE]<asp:Panel runat = "server" ID = "PurchaseOrderPanel"> <tr> <td><div class="txtClass"> <span class="required">*</span> Number: </div> </td> …

Member Avatar for dnanetwork
0
256
Member Avatar for progtick

do you guys know of any good free web design software? or something with more than 1-2 months of trial period? I do not want to do something too fancy, so super-complicated software may not be needed.

Member Avatar for JasonHippy
0
66
Member Avatar for progtick

do you find websites written in ASP.NET somewhat slower? are ASP controls like gridview, datagrid etc heavy on page? what are do's and don'ts of ASP.NET if it comes to speed and security?

Member Avatar for mail2saion
0
121
Member Avatar for progtick

I have googled it so many times, and I still feel clueless about what language I should go with. I feel comfortable in ASP.NET, and I have coded some small stuff here and there in PHP too. 1) I do not have visual studio 2008. I have Visual Studio 2005. …

Member Avatar for progtick
0
249
Member Avatar for progtick

Suppose I am using the code below to display image [CODE]<img runat = "server" width = "50px" height = "50px>[/CODE] However, the original size of the picture is 500 * 500. So, in terms of bandwidth load, would it be same as displaying the picture in 500*500 dimension or do …

Member Avatar for rblackmond
0
140
Member Avatar for progtick

Suppose I am using the code below to display image [CODE]<img runat = "server" width = "50px" height = "50px">[/CODE] However, the original size of the picture is 500 * 500. So, in terms of bandwidth load, would it be same as displaying the picture in 500*500 dimension or do …

Member Avatar for Airshow
0
73
Member Avatar for progtick

I have a multi-project solution. There are two projects in the same namespace, one created by me, and the other created by this opensource software. Both of the projects are set to output class library. However, I can use the opensource's class in my code, but I can not use …

Member Avatar for sknake
0
104
Member Avatar for progtick

I am losing my mind here. I am using Visual Studio 2008 to develop a website and I am using masterpage and contentpage. If I delete this line from one of the controls on page, then the page formatting breaks. If I keep it, it stays fine. [CODE]<link rel="stylesheet" type="text/css" …

Member Avatar for serkan sendur
0
117
Member Avatar for progtick

I am using ASP Login feature and I am binding data for controls like repeaters and div's using the clause [CODE]if (!Page.IsPostBack) [/CODE] If the login is successfull, then it seems all is fine. Otherwise, repeaters and div's etc lose their data. I have noticed that when the login is …

Member Avatar for serkan sendur
0
50