Morning all,
I'm in need of some help with something I really should know but for the life of me I can't get to work!!!
I'm trying to pass a list of file uploaders into and out of a session variable. ie:
private List<FileUpload> files;
Session["files"] = List;
List = Session["files"]...
Morning everyone,
I hope someone out there can help me here as I'm sure I'm slowley going mad! I'm trying to get a CustomValidator working on my CompositeControl. The control is being added fine during the CreateChildControls:
titleVal = new CustomValidator();
titleVal.Display =...
function doStuff(sender, args)
{
alert("moooo");
}
doStuff will ultimatley do alot. It will be checking a series of other fields to determine if this field becomes mandatory. I'd ideally like to do this without postbacks turning controls on / off etc. The validation aspect will be easy...
Afternoon all,
I'm hoping that someone can save me from drink tonight by helping out on this one.
I have a CustomValidator as follows:
<asp:CustomValidator ID="customVal_1" runat="server" ValidateEmptyText="true" ControlToValidate="textBox" ClientValidationFunction="doStuff"...
Afternoon all,
I've just started playing with SAPI - i've got the text to wav working fine however I'm trying to get a wav to text converter written also. I've got a problem whereby the recognition event isnt fired in the code below:
wavfile = "c:/ccs_audio/111.wav";
wavrecocontext =...
I have a .net solution that uses references.
How does .net get a newer version of a dll (active X)?
Does it check the version number? the date time stamp?
This comes from a 3rd party api that have released a new dll which a web service is not picking up.
Correct on function:
Function GetMdbVersion(l_Mde)
on error resume next
Dim l_AVer
Dim l_Acc
Set l_Acc = CreateObject("Access.Application")
l_Acc.SendKeys("+")
l_Acc.OpenCurrentDatabase (l_Mde )
l_AVer =l_Acc.CurrentDB.Properties("AccessVersion")...
All - i'm having problems getting the MS Access version of a database. I am using the following function:
Function GetMdbVersion(l_Mde)
on error resume next
Dim l_AVer
Dim l_Acc
Set l_Acc = CreateObject("Access.Application")
l_Acc.AutomationSecurity = 3
l_Acc.SendKeys("+")...
Hello,
I'm currently working on a solution that injects branding into all web requests. I've gone down the asp.net httphandler route as the majority of our web solutions use this framework.
My question is this: How do I call this asp.net component on say classic ASP, JSP web requests?
I'm...
Just found this: "HTTPModule that modifies the response output stream seems to break WebResources.axd"
all is not well in Rob-land. any thoughts / solutions to this?
Back on this one again - the use of the httphandler has stopped the required field validators from working on the .net solution. Has anyone run into this before or know the cause of this?
Hi all,
fingers crossed this is a quick and easy question.
I'm doing an error control page that attempts to redirect you to your destination every 20 seconds. The error page loads a-okay and redirects when the page is up however if the page is still down i get the diagnose windows connection...
Jason your a legend - I'll start the google-ing of HttpContext.Cache and see how I get on. I'll probably come back with a hundred questions on its use in this context over the next few days. I take your point on hard coding the header / footer. I'm thinking of adding the cache and adding a...
Hi Jason,
Sorry for the lateness is my response – it has been like a mad house!
With regards to point 2 (asp.net cache). How would you achieve this? I’ve added
<add name="OutputCache" type="System.Web.Caching.OutputCacheModule"/>
To the web.config of my test application however wont this...
Hi Jason,
I've been doing some time testing on the solution and it appears the scrapping of the html from the header / footer is the big slow down. The code for the scrape is as follows:
string url = "http://google.com";
string strResult = "";
WebResponse objResponse;
WebRequest...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.