I have a asp based website. I would like to do spelling and grammer check for onblur event on a text field.
Is there any javascript or asp based library available to do this?
thanks
-Vivek
I have a asp based website. I would like to do spelling and grammar check for onblur event on a text field.
Is there any javascript or asp based library available to do this?
thanks
-Vivek
Is it possible to check if our code is executing in Integrated Pipeline Mode or not?
There are some ASP.NET class properties that only work in Integrated Pipeline Mode, and I want to avoid raising an exception if there is a way to test if our code is executing in that environment or not.
How to create VB Irregular expression syntax to check the VPparam (IP address validity)
When the last octatat of the IP address is a range between ip's (x-y)
and between each IP we can put the "," separator in order to add another IP
example of VBparam
VBparam=172.17.202.1-20
VBparam=172.17.202.1-10,192.9.200.1-100
VBparam=172.17.202.1-10,192.9.200.1-100,180.1.1.1-20
THX
yael
Safari's XMLHttpRequest's send() method supports a File argument. Firefox does not (yet).
How can I check if this is supported? In Firefox, it will just behave as if an empty string was passed.
I'm trying to avoid doing browser version detection.
How to create VB script Irregular expression syntax to check the VPparam (IP address validity) When the last octatat of the IP address is a range between ip's (x-y) and between each IP we can put the "," separator in order to add another IP
example of VBparam
VBparam=172.17.202.1-20
VBparam=172.17.202.1-10,192.9.200.1-100
VBparam=172.17.202.1-10,192.9.200.1-100,180.1.1.1-20
THX yael
Hi
I want to publish my application (ABC). Its an audiobook file(just for example.) wrapped as apk. When the user install this application it needs to check whether another application (XYZ) already installed or not. If not let the user know they have to install the application XYZ first before installing ABC.
Thanks in advance
Rajesh
I have an embedded database in an asp.net mvc project. If I try to write to the file, I sometimes get a write failed exception because the SQL Server can't write to the file. How can I check an ObjectContext, if its writeable, without actually writing something to the database?
Hi All,
how can i check which JVM version is installed using javascript in my MVC asp.net application ?
Basically i have to redirect user to error page if user don't have recommented JVM in his machine.
Please suggest
Hi All,
how can i check which JVM version is installed using javascript in my MVC asp.net application ?
Basically i have to redirect user to error page if user don't have recommented JVM in his machine.
Please suggest
I'm trying to check whether a URL is from the same domain with jQuery Validation addMethod.
Here's what i got so far, but it doesn't seem to be working:
jQuery.validator.addMethod("domain", function(value, element) {
return this.optional(element) || /^http:\/\/testsite.com/.test(value);
}, "The URL doesn't match.");
$("#url_form").validate({
rules: {
url: {
required: true,
url: true,
domain : true
}
}
});
I am struggling with getting Inno Setup to set the check box to true whether a desktop icon should be created. The documentation has not been any helpful concerning this issue as well as Googlism and Stackoverflow.
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
My thought was a value like "checked" for "Flags" but the documentation told me, that Flags isn't responsible for this.
Hi.
I use .NET TWAIN from http://www.codeproject.com/KB/dotnet/twaindotnet.aspx?msg=1007385#xx1007385xx in my application.
When i try to scan image when scanner is not plugged in, application freeze.
How to check is any device plugged in from TWAIN driver?
Thanks.
I'm trying to create a universal iPhone app, but it uses a class defined only in a newer version of the SDK. The framework exists on older systems, but a class defined in the framework doesn't.
I know I want to use some kind of weak linking, but any documentation I can find talks about runtime checks for function existence - how do I check that a class exists?
I am writing a serial communication program in userspace. I want to check how much of the buffer is full. Is there a way to do it using linux terminal i/o api?
Thanks
In my win forms c# app, I want to be able to add spell check functionality. But, I want to do it my own way, and NOT use any other components. All I need is just an online service where i can send a request or something and it tells me whether or not the word i sent was spelled correctly.
Preferred but not required: The ability for that online sevrice to also send back suggestions.
How can I check the status of an IIS6 application pool with C# ?
For example, I want to know if it is running or not !
Thank's in advance for your help !
Is it possible to check if FinalBuilder is running a script with code?
I would like to make a small application that can remotely start building a project on a remote machine, but only if its not running a script already.
regards,
-Vegar
In normal javascript, I can check either
if (i == undefined)
or
if (i === undefined)
or the "typeof"
however, within facebook, it will have the api_key append as the prefix in undefined.
i.e. it will become
if (a12345_i == a12345_undefined)
which is NOT undefined
so, what can I do to find out the variable is undefined or not?
I have a dynamically generated rss feed that is about 150M in size (don't ask)
The problem is that it keeps crapping out sporadically and there is no way to monitor it without downloading the entire feed to get a 200 status. Pingdom times out on it and returns a 'down' error.
So my question is, how do I check that this thing is up and running
Could you tell me please how to check permissions to functions with psql console but without being overwhelmed with source code and descirption (like when using \df+).
hey all,
i have the following code
foreach (DataRowView dr in Data)
{
if (dr == System.DBNull.Value)
{
nedID = 1;
}
}
but i get the following error
Operator '==' cannot be applied to operands of type 'System.Data.DataRowView' and 'System.DBNull'
please can some one advice me on how i can check if the value is null or DBNULL
How to check that my params['Filedata'] is corrupted or not?
I have function it's reading file from params['Filedata'] and writing it to the other file.
File.open(upload_file, "wb") { |f| f.write(params['Filedata'].read) }
this line working fine for me..
But when i am calling this function with delayed job funtion send_later than I am getting error with params['Filedata'].read.