Click here to Skip to main content
15,884,237 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Syntax error in UPDATE statement. ? Pin
MyDevBank2-Apr-10 11:18
MyDevBank2-Apr-10 11:18 
GeneralRe: Syntax error in UPDATE statement. ? Pin
Muhammad Gouda2-Apr-10 12:50
Muhammad Gouda2-Apr-10 12:50 
GeneralRe: Syntax error in UPDATE statement. ? Pin
Eddy Vluggen2-Apr-10 13:59
professionalEddy Vluggen2-Apr-10 13:59 
Questionaspx with ajax, treeview postback to wrong page Pin
sigurdur einarsson2-Apr-10 3:32
sigurdur einarsson2-Apr-10 3:32 
AnswerRe: aspx with ajax, treeview postback to wrong page Pin
Muhammad Gouda2-Apr-10 4:47
Muhammad Gouda2-Apr-10 4:47 
GeneralRe: aspx with ajax, treeview postback to wrong page Pin
sigurdur einarsson2-Apr-10 4:59
sigurdur einarsson2-Apr-10 4:59 
GeneralRe: aspx with ajax, treeview postback to wrong page Pin
Muhammad Gouda2-Apr-10 12:56
Muhammad Gouda2-Apr-10 12:56 
GeneralRe: aspx with ajax, treeview postback to wrong page Pin
sigurdur einarsson4-Apr-10 23:09
sigurdur einarsson4-Apr-10 23:09 
Hi Mohammed Gouda
(have been working shifts last 3 days, got your email just now, thanks for the reaction)

- rendered node in html :




- these two functions(E_TreeNodePopulate,E_TreeNodeExpanded) handle it when the above node is clicked :
public void E_TreeNodePopulate(Object source, TreeNodeEventArgs e)
{
if (Session["SelectedNodeChanged"] == null)
{
int currentuserid=-1;
if (Session["userObj"] == null)
currentuserid = 0;
else
currentuserid = Convert.ToInt32(((UserObject)Session["userObj"]).Id);
foreach(TreeNode tn in e.Node.ChildNodes) //in the beginning the root should be e.Node
{
int treenodeuserid = TreeNodeHelper.getIdFromTreeNodeValue(tn.Value);
if (treenodeuserid == currentuserid)
{
Session["SelectedNodeChanged"] = tn;
Session["DisplayContactUserId"] = null;
}
}
}
populateSelectedNode(e.Node);
}

protected void E_TreeNodeExpanded(object sender, TreeNodeEventArgs e)
{
populateCollectionPage(e.Node);
}

cheers, Siggi
GeneralRe: aspx with ajax, treeview postback to wrong page Pin
Muhammad Gouda5-Apr-10 11:47
Muhammad Gouda5-Apr-10 11:47 
Questionhow to create rounded corner div with drop shadow. Pin
Sudhanshu Mani Tripathi2-Apr-10 2:38
Sudhanshu Mani Tripathi2-Apr-10 2:38 
AnswerRe: how to create rounded corner div with drop shadow. Pin
MyDevBank2-Apr-10 2:47
MyDevBank2-Apr-10 2:47 
GeneralRe: how to create rounded corner div with drop shadow. Pin
Sudhanshu Mani Tripathi2-Apr-10 3:13
Sudhanshu Mani Tripathi2-Apr-10 3:13 
GeneralRe: how to create rounded corner div with drop shadow. Pin
MyDevBank2-Apr-10 6:58
MyDevBank2-Apr-10 6:58 
AnswerRe: how to create rounded corner div with drop shadow. Pin
MyDevBank2-Apr-10 9:57
MyDevBank2-Apr-10 9:57 
QuestionHow to get the STock ticker from Indian Share market ?? Pin
Sobelja1-Apr-10 20:06
Sobelja1-Apr-10 20:06 
AnswerRe: How to get the STock ticker from Indian Share market ?? Pin
R. Giskard Reventlov1-Apr-10 20:32
R. Giskard Reventlov1-Apr-10 20:32 
AnswerRe: How to get the STock ticker from Indian Share market ?? Pin
MyDevBank2-Apr-10 0:22
MyDevBank2-Apr-10 0:22 
QuestionASP.Net and Oracle Problem Pin
CrazyCoder261-Apr-10 19:24
CrazyCoder261-Apr-10 19:24 
Questioncode of friends Pin
sweta24081-Apr-10 19:04
sweta24081-Apr-10 19:04 
AnswerRe: code of friends Pin
Muhammad Gouda2-Apr-10 4:52
Muhammad Gouda2-Apr-10 4:52 
QuestionVideo conferencing Pin
jayprakash sir ji1-Apr-10 17:44
professionaljayprakash sir ji1-Apr-10 17:44 
Questionwhen user enter the name of category releted records should be pop up in gridview control using asp with c# Pin
developerit1-Apr-10 10:45
developerit1-Apr-10 10:45 
AnswerRe: when user enter the name of category releted records should be pop up in gridview control using asp with c# Pin
Alaric_1-Apr-10 10:49
professionalAlaric_1-Apr-10 10:49 
Questionhow to calculate total in a gridview dynamically Pin
developerit1-Apr-10 10:39
developerit1-Apr-10 10:39 
AnswerRe: how to calculate total in a gridview dynamically Pin
Alaric_1-Apr-10 10:44
professionalAlaric_1-Apr-10 10:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.