Click here to Skip to main content
15,889,609 members

Comments by reogeo2008 (Top 5 by date)

reogeo2008 17-Nov-12 4:41am View    
Solution YC(2 Projects)
YC.Web
Images
.
.
YC.Web.Admin
Category.Aspx
.

I wanted to upload images from YC.Web.Admin's Category.aspx page to YC.Web's Images Folder..Please Help Me in tHis..Thank You Fpr Your Response
reogeo2008 9-May-12 1:34am View    
what i meant is ,if the url is
https://www.facebook.com/pages/Delhi/Shemrock-Chain-of-Preschools/359534360364
just pick the facebook
if http://twitter.com/#!/ShemrockGroup
just pick the twitter

and so on for any url
reogeo2008 9-May-12 1:29am View    
Server side ,C#...i got some functions to make it which return facebook.com as answer but i need just facebook or twitter or youtube etc as answer after substring function worked...
pls give me a suggestion
reogeo2008 21-Oct-11 6:49am View    
Hi..
I tried the same and doesnt worked ..Anyway Thanks for the help
reogeo2008 18-Oct-11 2:22am View    
Hello,

This is my function which i have converted from VB
and i tried the same u mentioned above and getting the same error

public static void RestoreTreeView(TreeView treeView ,String key)
{
if( IsTreeViewStateSaved(treeView, key) )
{
treeView.Nodes.Clear();

TreeNodeCollection nodes = (TreeNodeCollection)HttpContext.Current.Session[key + treeView.ID];
for( int index = nodes.Count - 1;index>=0;index--)
{
treeView.Nodes.AddAt(0, nodes.Item[index]);
}

HttpContext.Current.Session[key + treeView.ID] = null;
}
}