November 27th, 2012 12:53 PM
I've been reading online about security methods for RPC in PHP - I happen to be using JSON encoded strings. Most of the discussions people are talking about having the security check performed in...
December 22nd, 2009 09:33 AM
I find a great resource for things like this is to check out websites like zen cart that often have opensource plugins already developed and available. Check out how they did it then right the same...
December 22nd, 2009 01:52 AM
OK - so I'm using C# in ASP.net with AJAX (microsoft's AJAX).
on my source page I have the following:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
...
August 17th, 2009 06:17 PM
well, it's exactly the same data. but indexing 4000 rows shouldn't take 3 days (before we stop the process)
August 16th, 2009 03:26 PM
I'm trying to run a full text index from a catalog created. One one server (dev server) it executes (showing full text index in progress under status) then the status changes to idle when complete....
February 7th, 2009 01:43 AM
I need to parse MS word XML docs programatically. I've read that the images are base64 encoded, but when I base 64 decode them, I have corrupted image file errors when I try to view the extracted...
December 14th, 2008 11:56 PM
I've been writing Java for years and most recently (2004) started working with C#. Now I'm trying to do some work in C++ but I'm having issues with where things are located...
In C# if I need...
February 22nd, 2007 05:25 PM
web config is a great little place to store global parameters such as:
database connection params
admin email settings (smtp, admin email account...)
where to log errors to
even role based...
February 21st, 2007 12:43 PM
<asp:CheckBox id="chkBox" runat="server" checked="<%# Eval('doc_area_default') %>" />
try
<asp:CheckBox id="chkBox" runat="server" checked='<%# Eval("doc_area_default") %>'/>
February 20th, 2007 12:23 PM
sort of a hibrid of my own stuff mixed with the dot net:
protected void deleteBookmarks(object sender, ImageClickEventArgs e)
{
DataKeyArray aryKeys =...
February 11th, 2007 05:26 PM
did you manage to get any of those to work for the net?
February 7th, 2007 11:19 AM
Igor:
CPUWizard:
CPUwizard was answering his question in regards to 'is it some kind of server side language' and pointing out it is language independant on the server side. i don't doubt...
January 25th, 2007 06:06 PM
are you using a 3rd party Ajax framework? there's some free ones out there that have provisions for that.
if you want to hand-code the heck out of your own, here's what to do:
send the...
January 22nd, 2007 05:36 PM
this might not be an issue HERE, but check the fact that you're using single quotes instead of proper quotation marks in you XML file when you declare your namespace.
January 18th, 2007 04:49 PM
can you post the section of your code that is appending the child node to the list?
January 18th, 2007 04:45 PM
Bubu,
I think you may have misread the post by CPUWizard. You're response has not proven him incorrect, you've merely mentioned that you used a client side script you wrote yourself (in...
January 18th, 2007 04:40 PM
I'd heard it's not possible and read just yesterday that with Microsoft's Atlas/ Ajax Beta it's NOT possible, due to how the XMLHttpRequest object handles connections.
January 5th, 2007 01:25 PM
I've never tried that sort of thing, but have you tried messing around with simply reading the first file in as an array of bytes, writing it to a new file, then reading the 2nd file in as an array...
December 28th, 2006 02:33 PM
go into your tomcat config file and change the listening port from 8080 to just 80 (which is the default for browser requests).
then change your dns to point to your IP address (helps to get a...
December 28th, 2006 11:23 AM
well I thought of that, but I have a hashmap of values generated from the results of the criteria checking filter. If I change it to cookie based, I'd need to write a whole parse cookie section on...
December 27th, 2006 09:01 PM
trying to get a filter to redirect to the refering page if it doesn't pass certain criteria. if it needs to return to the referer, I add values to the request.attributes object.
if I use...
December 15th, 2006 12:44 AM
what are your thoughts when using dot net data bound controls in a web site?
Use the data access object in your aspx files and remove a tier from the multi-tiered architecture, or ignore what...
December 12th, 2006 12:21 AM
I've got the ajax with dot net down to a science now... I don't really like the atlas project stuff - most of what I write for dot net is all utilizing our prewritten toolbox controls, so I had to...