No announcements
Found 1389015 threads
-
1 Votes
check to see if browser accepts cookies
Hello, Have a look at this page where everything about Cookies and Visual Basic Net is described.Answered | 3 Replies | 1832 Views | Created by jpmpas - Wednesday, August 31, 2011 11:40 AM | Last reply by jpmpas - Wednesday, August 31, 2011 4:09 PM -
0 Votes
IXMLHTTPRequest2 cookie
If you already know the name of the cookie and if the cookie exists in the collection, you will get that value.Answered | 7 Replies | 2813 Views | Created by rob qqq - Friday, September 28, 2012 12:20 AM | Last reply by Prashant H Phadke - Wednesday, October 17, 2012 6:10 PM -
0 Votes
cookies
Cookies are a web thing and you need to be dealing with web documents ( pages ) in order to have any cookies.Answered | 1 Replies | 623 Views | Created by BALA BHASKARA CHARY(BBC) - Monday, December 28, 2015 10:49 AM | Last reply by Andy ONeill - Monday, December 28, 2015 11:33 AM -
1 Votes
check if file exist
"how can I check to see if the file actually exist before I do any processing of it?Answered | 3 Replies | 691 Views | Created by SharePointGuy123 - Tuesday, October 27, 2015 6:30 PM | Last reply by CoolDadTx - Wednesday, October 28, 2015 2:14 PM -
0 Votes
Need to login using a cookie
If your SharePoint app and the SharePoint single sign on app are in the same domain, you can set the cookie with a domain level asp.net authentication ...Answered | 1 Replies | 744 Views | Created by RVP1992 - Wednesday, January 28, 2015 3:31 PM | Last reply by Jerry Zy - Monday, February 2, 2015 6:25 AM -
0 Votes
Cookies
I came across the problem in which i need to remove the cookies from the project.I removed all code which is responsible to store the cookies but still the ...Answered | 1 Replies | 6893 Views | Created by deepak India - Wednesday, January 26, 2011 9:21 AM | Last reply by Krystian.Zieja - Wednesday, January 26, 2011 9:36 AM -
0 Votes
Check the existence of a file
Hi, As Daniel said you need to use http request to check the existence of the page.Answered | 3 Replies | 7704 Views | Created by adobepankaj - Friday, January 15, 2010 3:46 PM | Last reply by Sohel Rana - Saturday, January 16, 2010 8:47 AM -
1 Votes
Cookie
ie Every time i need to clear the cookie and capture the new cookie (secured token).Answered | 5 Replies | 5398 Views | Created by Loadperformer - Wednesday, May 20, 2009 1:24 PM | Last reply by rogeorge - Thursday, May 28, 2009 3:07 PM -
1 Votes
Check site exists
Hi Venbkatzeus, If the function help to check site existed ?Answered | 4 Replies | 630 Views | Created by Venkatzeus - Tuesday, August 22, 2017 2:40 PM | Last reply by Venkatzeus - Friday, August 25, 2017 6:19 AM -
4 Votes
Check if file exists in the path
You are checking a Boolean twice.Answered | 4 Replies | 4146 Views | Created by Ashok K - Tuesday, November 6, 2012 3:05 PM | Last reply by ScottWerkema - Tuesday, November 6, 2012 4:44 PM -
4 Votes
Function to check existence of Table
Note that some argue that you want to check for type of object as well (since there can for instance exist a stored procedure or view with that name), but that ...Answered | 4 Replies | 3874 Views | Created by paragkalra - Wednesday, January 13, 2010 9:53 AM | Last reply by TiborK - Wednesday, January 13, 2010 3:45 PM -
0 Votes
C# check directory exists
string strFullpath = @"C:\Data\IFiles"; if (false == Directory.Exists(strFullpath)) { Console.WriteLine(String.Format("{0} does not exists", ...Answered | 3 Replies | 35409 Views | Created by wendy elizabeth - Wednesday, February 20, 2013 5:20 PM | Last reply by Sam Vishwas - Wednesday, February 20, 2013 5:42 PM -
0 Votes
check if remote file exists
I found easy solution to check whether image exists on remote url without writing any server side code.Answered | 6 Replies | 7152 Views | Created by RobSzar - Thursday, April 23, 2009 6:18 PM | Last reply by Shail Patel - Monday, January 25, 2010 8:08 PM -
1 Votes
how to check for existing files
If your application is shortly going to access the file after checking it exists, then you may as well just access it without ...Answered | 14 Replies | 1507 Views | Created by SLborn - Friday, March 29, 2013 8:22 PM | Last reply by SLborn - Thursday, April 4, 2013 5:50 PM -
0 Votes
webview and cookies
Cookies was received as expired due to wrong tz.Answered | 3 Replies | 810 Views | Created by Gandalf il Bianco - Thursday, October 8, 2015 7:01 PM | Last reply by Gandalf il Bianco - Friday, October 9, 2015 9:01 AM -
0 Votes
check file exists
For example, if the file does not exists or exists, Script Task returns a flag, and store this flag value into a variable.Answered | 4 Replies | 1675 Views | Created by MTL2014 - Tuesday, October 4, 2016 3:09 AM | Last reply by Nik - Shahriar Nikkhah - Wednesday, October 5, 2016 3:44 AM -
3 Votes
Check if file still exists
I haven't included code that uses the .Exists method because I'm sure (like you said) it will check if the filename is in the listbox and will therefor always return true.Answered | 15 Replies | 2341 Views | Created by Rionto - Thursday, December 27, 2012 7:48 PM | Last reply by Acamar - Monday, December 31, 2012 9:18 PM -
0 Votes
check table exists
version using 3-part object name and sys.tables: IF EXISTS (SELECT * FROM MyDB.sys.tables t JOIN MyDB.sys.schemas s ON t.schema_id = s.schema_id WHERE s.name ...Answered | 4 Replies | 3746 Views | Created by tsql_new - Friday, July 12, 2013 7:15 PM | Last reply by SDeering - Friday, July 12, 2013 8:10 PM -
1 Votes
Check if DataBase Exists
I can't get the SQL Server Management Studio to let me have permission to do anything like add a database, attache a database, check databases, etc.Answered | 13 Replies | 23661 Views | Created by DeHXX - Sunday, November 28, 2010 10:52 PM | Last reply by DeHXX - Sunday, December 12, 2010 10:18 PM -
17 Votes
Check to see if list exists
How to check if SPList exists public static bool ListExists(SPWeb web, string listUrl) { return web.Lists.Cast<SPList>().Any(list => ...Answered | 7 Replies | 43767 Views | Created by Mike Felton - Friday, October 31, 2008 4:34 PM | Last reply by vgrem - Thursday, February 6, 2014 12:02 AM - Items 1 to 20 of 1389015 Next ›
No announcements