Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
You can check if cell contains hyperlink or not using the following two methods. These methods will return null if the cell does not contain a hyperlink and if it contains a hyperlink, it will return GridHyperlink object.
If your excel file contains hyperlink which links to some URL like http://wwww.aspose.com/ and you load it in GridWeb then the hyperlinks will be rendered with target attribute set to _blank. It means, when you will click the hyperlink in a GridWeb cell, it will open up in a new window instead of existing window. Please check the GridHyperlink.Target property in the following debug window. Besides, if you want to open the hyperlink in the existing window, then please set the GridHyperlink.Target to _self.

The following sample code accesses the hyperlink of cell A1. If cell A1 contains hyperlink then it will return GridHyperlink object, otherwise, it will return null.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.