|
|
|
Use this tool to learn about websites, specifically the one you just entered.
If you find some aspect of it inappropriate it is not our fault.
If you are the owner of this website: yes we are a real search engine, we do have a real web crawler called FyberSpider and you can block it if you feel the urge.
We are in the process of updating this tool. Until we are done just use our search results to check the inclusion status of your site.
Submit your site to major search engines within 48 hours.
Find out if your site has been cataloged by top search engines for only $8.99.
Below you will see site info taken directly from the URL you entered in real time. This is also known as our URL Breakdown tool and can be used independently of our site info tool.
RC 's Code Snippets: May 2005
This is just a sample of the content found on this website. Please visit the website to read the entire page.
"RC 's Code Snippets
I will post code snippets that I think may be helpful to other people as well as my opinion on programming topics. The code snippets may be written by me or found elsewhere, but either way: Use at your own risk.
C#, VB.Net, VB, HTML, DHTML, XML, JavaScript, SQL
Friday, May 27, 2005
.Net Remote Script Request
Have you ever wanted an easy way to call a server side method from javascript? If so this class may be just what you need.
I have created a simple and easy to use method for accomplishing this task. All you have to do is have your webform inherit from the remote script page, make your call using a simple javascript object (will be included automatically), and when you execute the request in javascript the OnRemoteScriptRequest event will be raised in your server side code, you then process the request and write the result out on the response stream. The result will be returned by the javascripts execute method.
This .Net class library uses a combination of C# code and javascript to accomplish the task in an easy to use manner. The call uses Microsoft.XMLHTTP, Msxml2.XMLHTTP or XMLHttpRequest objects (depending on the browser) to do the underlying call back to the server. Because of this it will work in all recent IE and Mozilla based (Firefox, Netscape, Mozilla, etc.) browsers.
Try It Here!
Here it is step by step
Include a reference to RemoteScript.dll
Have your webform inherit from the remote script page:
public class WebForm1 : RemoteScript.Pages.RemoteScriptPage
Add the event handler in the InitializeComponent method
this .OnRemoteScriptRequest += new RemoteScript.Pages.RemoteScriptEventHandler(RemoteScriptTest_OnRemoteScriptRequest);
Add the event handler method
private void RemoteScriptTest_OnRemoteScriptRequest( ob"
....
read entire page
|
Links to Pages on Other Domain Names
|
|
Links to Pages on the Same Domain Name
|
|