--- Are the input parameters literally column names from a specific table?
Yes, they are. @FieldName and @Value are columns (varchar) in table called "Table1".
The page I am working with displays one label and one textbox (label - @FieldName from "Table1", textbox value - @Value from...
I need to check data types of values that have been entered from UI. I am going to create a stored proc that will take two parameters (@FieldName, @Value)
I have a table where I can get data types for @FieldName from.
SELECT @FieldType = FieldType
FROM TableName
WHERE FieldName = @FieldName
So...
I need to write a pattern to locate all files missing a word, for example, "test". I gonna use this pattern in a search tool in order to find these files under specified directory.
Thanks.
var valid = "0123456789-";
var hyphencount = 0;
var zipcode_fields = new Array(2);
zipcode_fields[0] = document.form.fld_ZipCode.value;
zipcode_fields[1] = document.form.fld_ServiceZipCode.value;
for (var i=0; i < zipcode_fields.length; i++)
if...
if ((document.form.fld_ServiceClass.value=='') && (document.form.fld_OfferCode.value=='')) {
alert('Either Offer Code or Service Class has to be filled in!');
event.returnValue = false;
}
// ZipCode Check
var valid = "0123456789-";
var hyphencount = 0...
I am wondering what will be a good way to change the function to populate combobox (add a default value to be selected). The function I have now is used a lot within an application. Since VBScript does not support optional arguments to be passed to a function I don't want to break a lot of...
I have this menu and would like to make hover works for tr also. Could you please help me with this.
<style>
#menuright a:link, #menuright a:visited
{
background: #ccc;
font-size: 10px;
font-family:verdana, palatino, georgia, arial, sans-serif;
line-height: 22px...
SP returns:
MenuID ParentID Text LevelID
1 0 Menu Option1 0
3 1 Sub1_1 1
4 1 Sub2_2 1
5 0 Menu Option2 0
3 5 Sub2_1 1
4 5 Sub2_2 1
How to get this table using VBScript:
Menu Option1 Menu Option2
Sub1_1...
let me give you a full picture:
I received an excel file with 2 columns:
1 column contains name of potential dealers
2 column contains phone numbers
I should give them back the list of names with phone numbers that are not in the database.
So I created temp table in the database...
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.