ZackThom

Stories kicked by ZackThom

Google Calendar API(code.google.com)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 1 month ago

Google Calendar allows client applications to view and update calendar events in the form of Google data API ("GData") feeds. Your client application can use the Google Calendar data API to create new events, edit or delete existing events, and query for events that match particular criteria. There are many possible uses for the Calendar data API. For example, you can create a web front end for your group's calendar that uses Google Calendar as a back end. Or you can generate a public calendar for Google Calendar to display, based on your organization's event database. Or you can search relevant calendars to display a list of upcoming events on those calendars. read more...

1 comment |category: |Views: 922

tags: another

Ultimate Security, Role, Membership and Profile Provider List(arnonel.com)

submitted by arnonelarnonel(175) 6 years, 1 month ago

The Ultimate Asp.net 2.0 Security, Role, Membership and Profile Provider List V1.0 read more...

2 comments |category: |Views: 42

tags: another

Upcoming ASP.NET Releases in April (weblogs.asp.net)

submitted by k000derk000der(4765) 6 years, 1 month ago

Upcoming ASP.NET Releases in April by ScottGu read more...

add a comment |category: |Views: 0

tags: another

Encoding and Decoding a string to Base64 for QueryStrings(community.devpinoy.org)

submitted by keithrullkeithrull(70) 6 years, 1 month ago

A friend of mine asked me today about encoding a string Base64. The scenario was that he has some files that he wants to be allowed for download on their company website and that he doesn't want the people who are downloading the files from his website to see where the downloads are coming from. The files are located in a folder inside the webserver outside of the virtual directory. The decision that the came up with was just to Base64 encode all the paths, pass ito to a new page via querystring and then decode that value on the download page. I gave it a shot and this is the code i gave him to serve as a guide on how he can effectively implement this. read more...

add a comment |category: |Views: 12

tags: another

How To: Use Protocol Transition and Constrained Delegation in ASP.NET(msdn.microsoft.com)

submitted by j.montyj.monty(1868) 6 years, 1 month ago

This How To shows you how to configure and use protocol transition and constrained delegation to allow your ASP.NET application to access network resources while impersonating the original caller. read more...

add a comment |category: |Views: 2

tags: another

HOW TO: Using Surrounds with in Visual Studio 2005(thoughtblog.com)

submitted by kimshureekimshuree(120) 6 years, 2 months ago

Kick guide on how to use the Surrounds with feature in Visual Studio 2005 read more...

add a comment |category: |Views: 4

tags: another

Eric's weblog - Update User's Session with AJAX(radio.javaranch.com)

submitted by ColdChilliColdChilli(55) 6 years, 2 months ago

Shows how to warn or update a users ASP.Net session using AJAX/Atlas read more...

add a comment |category: |Views: 5

tags: another

Dynamically adding webparts to the dynamically added Catalog zone(blogs.msdn.com)

submitted by itzrahulsoniitzrahulsoni(745) 6 years, 2 months ago

This entry shows you how to add webparts dynamically to the Catalog Zone in ASP.NET 2.0. The reason why you may like to do it is because you have a lot of webparts to choose from which you don't want to show up directly when your user logs in. Using this method you can load them dynamically only in the Catalog zone. I had a customer which had a very similar requirement. I found it a good one to share and here it is... read more...

add a comment |category: |Views: 125

tags: another

A CAPTCHA Control for ASP.NET 2.0(codeproject.com)

submitted by harlevharlev(290) 6 years, 2 months ago

CAPTCHA is short for "completely automated public Turing test to tell computers and humans apart" and is the most popular technique used to prevent computer programs from sending request to Web servers. This can be for meta-searching search engines, doing dictionary attacks in login pages or sending spam using mail servers. You may see CAPTCHA images in Google register page when you do availability check on too many usernames or in Yahoo, PayPal and many other big Web sites. read more...

1 comment |category: |Views: 218

tags: another

Adding 'Google Suggest' functionality to an ASP.NET application(codeproject.com)

submitted by harlevharlev(290) 6 years, 2 months ago

Shows how to add 'Google Suggest' functionality to an ASP.NET application. read more...

add a comment |category: |Views: 22

tags: another

ASP.NET In Page Progress Bar with Cancel Example(codeproject.com)

submitted by harlevharlev(290) 6 years, 2 months ago

Example of an asp.net page with progress display and a cancel button. A single page starts a long running process, shows the progress and shows the process completion message. read more...

add a comment |category: |Views: 58

tags: another

Reflector for .NET(aisto.com)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

Reflector is an excellent utility - a class browser for .NET components. It supports assembly and namespace views, type and member search, XML documentation, call and callee graphs, IL, Visual Basic, Delphi and C# decompiler, dependency trees, base type and derived type hierarchies and resource viewers. read more...

add a comment |category: |Views: 11

tags: another

Matching Anchor tags with Regular Expressions(blogs.worldnomads.com.au)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

From Matt Bourne's Blog: "As some of you would have noticed, I like to do my matching in steps. That is, match the main tag that I'm after and then match for the attributes." read more...

add a comment |category: |Views: 23

tags: another

I coulnd't do regex coding without this(sellsbrothers.com)

submitted by csmbacsmba(110) 6 years, 2 months ago

After discovering this tool, I just can not imagine doing any regex coding in .net without this. It is free, and saves you tons of debug time and compilations. All you need is to play with your regex on this tool, perfect it, and then write the code. just love it! read more...

2 comments |category: |Views: 18

tags: another

Compress ASP.NET 2.0 ViewState(techtoolblog.com)

submitted by teenwolfteenwolf(235) 6 years, 2 months ago

Benchmarking test with 116 web controls on 1 page to reduce viewstate size from 43.3 kb to 3.5 kb. read more...

add a comment |category: |Views: 36

tags: another

Consuming WebServices with SSL and HTTP BASIC Authentication (eggheadcafe.com)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

Excellent article on how to have web services check SSL certificate status and over-ride that default behavior based on the CertificateProblem enum. It also covers how to use BASIC authentication with SSL on the web service as well. read more...

add a comment |category: |Views: 183

tags: another