Hi Abdul, What is the overall configuration of IIS ? As you said, on Friday evening, have you noticed any over request on your web site ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Hi Abdul, What is the overall configuration of IIS ? As you said, on Friday evening, have you noticed any over request on your web site ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Hi Chris, Just found an issue in profile "Group
" Tab. Not sure if this has already been reported to you or not. I can see "Apply to join this group
" button with all existing groups. And, when I click on the button below message appearing "Not enough information supplied
" Please have a look !
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Thanks :thumbsup:
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Apologies if it's reported already. While editing a Question in Q&A forums, I got this validation "Please keep the subject between 3 and 50 words. The better the question, the better your answer.
" where as, the length of the question title was showing 49. Attached What I found is, validation is failing where there is a space at end. :)
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
I faced the same problem while voting some article. Seems my Vote is accepted by I can't see the message.
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
It could be the browser caching issue. Just close the browser and try it on new one. Or use Ctrl + F5.
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Elena2006 wrote:
. It is always taking previous session even if after logout.
What code have you written during Log out. Try Session.Abandon() during logout. and in page load, you need to check the session value for null or not. If you are using Browser back / forward button to navigate you have to clear the cache from there.
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Does your dropdown list has enable Postback. By default its false with DropdownList. So all the you are getting index as 0 which is the first index. Hope you got my point !:thumbsup:
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
There are couple of good article in CP, please try them first Use of the PayPal payment system in ASP.NET[^] AND Introduction to PayPal for C# - ASP.NET developers[^]
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Dan Neely wrote:
what makes you think they're not capable of idiot approval for articles as well?
Dan, I was not talking about the capability at anywhere and not that was my intention. My suggestion was, while setting multiple level of approval for an, taking consideration of Reputation point.
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Good Day Chris. Sacha was just an example. My thought was to put some Reputation points along with the approval workflow. :)
Chris Maunder wrote:
5 silver or above members to approve
Then why not increasing the moderator level. like only 2 Platinum member ? And for Tech blog, if the Author is Platinum, any one platinum apart from the author ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Hans, any opinion on this ?[^]
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Sean, This is a very good initiative. :thumbsup: But I would say this workflow needs to be redesign based on the membership level / Reputation Points of Authors . Author who has certain number of article and enough Author Reputation why they do needs this filter ? Assume, Sacha posted an killer article and he also needs to wait for 5 person to review and approve his article. :sigh: Coming back to Technical Blog post, If the post is feeded from blog which has already been received from Code Project Associate blog then why these numbers of approval level ? It was Just my thoughts !
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Wayne, This is ASP.NET Technical Forum. As you want to put this as a suggestion, I would request you to post it over here Site Bugs / Suggestions[^] FYI, There is an forum Web Developement [^] where you can ask your Classic ASP related question ! Thank You !
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
You can implement a custom session-state store provider for your Oracle database by creating a class that inherits the SessionStateStoreProviderBase
class Check them out, How to implement a custom Oracle session provider. [^] ASP.NET Custom Session Store Provider compatible with Oracle, SQL[^] :thumbsup:
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
You can use PayPal API for processing. In code Project there are several good article which explained how to use the API's of Paypal ! Use of the PayPal payment system in ASP.NET[^] http://beta.codeproject.com/KB/aspnet/paypal_c_aspnet.aspx[^] Hope this will help you !:thumbsup:
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Gali1978 wrote:
when i press this cell - how to send mail (througt the client mail) i try to add hyperlink column to the gridview - but not working how to do it ?
What is not working ? Are you getting any error ? What code you have written ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
Sandeep Mewara wrote:
Make sure you have set 'EnableViewState=True' for the checkbox control as well as it's container
Sandeep, For Checkbox EnableViewState property works in some different way. CheckBoxControl
Implement from IPostBackDataHandler
. This value is not read from view state but from Postback from and this is true for those control which implements the IPostBackEventHandler. Because in Page Lifecyle, before Page_Load
we have LoadViewState()
and LoadPostbackData().
So, though you disable the viewstate for Checkbox, It will load the data in LoadPostbackData()
method. This is same for a text box control as well.
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
buffering83 wrote:
make Dynamic Checkbox. After postback, Checkbos's check property is true. But Page's CheckBox is not checkded and Text Property was changed. reference blow code, if i clicked some button, j2j2 checkbox's check property is false, but checkbox is checked and Text was changed to fail.
Not clear what do you want to meant. Do you want your checkbox to main to postback details when checked or unchecked ? While creating the checkbox did you set CheckBox.Autopostback = "true" and in which events you have created the checkboxes ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips