Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
U

UnmeshDesale

@UnmeshDesale
About
Posts
12
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Yes it showing plus sign in front of TreeNode & I have set Expandable to Always in XML file. This code runs successfully locally on deployment server. I think code doesn't have any problem. I think it might having rights or security level problem. I have deployed application on Windows Server2003.I have given appropiate rights to ASPNet user & IIWP :sigh: Unmon.

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Where r u Dear ? I am waiting for ur reply, please help me. Thanks & Regards, Unmesh

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Private Function CreateParentTask(ByVal Node As TreeNode, ByVal CatCode As String) As Integer Try _TskXML = New Transactions.BusinessLogic.ActualTaskProgress.TaskPlanTree _TskXML.ProjectCode = _ProjCode _TskXML.CreateXMLForParentTask() Node.TreeNodeSrc = "../XML/PlanParentTask.xml" Node.Databind() Catch ex As Exception Transactions.BusinessLogic.ErrorLog.HandleError("", ex.Message, "FormLeftFrame/CreateParentTask()", Transactions.BusinessLogic.ErrorLog.ErrorType.Critical) End Try End Function In this function _TskXML is object of TASKXML class which generates the XML file for parentTask & childTask.The Code for CreateXMLForParentTask() is: Public Function CreateXMLForParentTask() As Integer Dim prtTask As New DataSet Try prtTask = GetParentTask() Dim ExCol As New DataColumn prtTask.DataSetName = "TREENODES" prtTask.Tables(0).TableName = "TREENODE" prtTask.Tables(0).Columns("TASKDESC").ColumnName = "TEXT" prtTask.Tables(0).Columns("TASKCODE").ColumnName = "ID" prtTask.Tables(0).Columns("TEXT").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns("ID").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns("EXPANDABLE").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns.Remove("ISPARENT") prtTask.Tables(0).Columns.Remove("PARENTTASKCODE") Dim path As String = HttpContext.Current.Server.MapPath("../XML/PlanParentTask.xml") prtTask.WriteXml(path) prtTask.Dispose() Return 0 Catch ex As Exception Transactions.BusinessLogic.ErrorLog.HandleError("", ex.Message, "TaskXML.vb/CreateXMLForParentTask()", ErrorLog.ErrorType.Critical) End Try End Function In this code GetParentTask() returns the dataset which contains the Task that doesn't having any Parent task. This code is working fine on server locally but over internet, this code generates XML file but doesnot bind that XML to TreeNode. :sigh: Thanks & Regards, Unmon

    ASP.NET sysadmin help data-structures

  • Is anybody know how to validate(using javascript) a textbox inside datagrid
    U UnmeshDesale

    Hiii Dear, If ur using server side textbox control then u write following code in ItemDataBound event of the datagrid for binding ur javascript function to textbox. e.Item.Cells(0).Controls(1).Attributes("Onblur") = String.Format("ValidateText({0});", this.ClientID) This will call the ValidateText function for textboxe on which onblur event fires.In that function you can mention one RegExp object for the further validation. It will help you.:) Unmon

    ASP.NET javascript help tutorial

  • IE Web Control Deployment Problem
    U UnmeshDesale

    I am using dynamic XML file, it gets generated when user select any node of the treeview.Means For each selected node I am generating it's child node in XML file. When I am accessing application on internet, XML file is generated properly on server.I don't know why it is not binding that XML file to selected tree node. Root(UpperMost) TreeNode appears same as displayed when run on server. I have deployed my application on Window2003 server.:sigh: Please help me. Thanks & Regards, Unmon

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Yes I have compared both HTML source file on internet & created on server. XML data is posted on HTML source file created on server but that XML data is not posted on file created on my own m/c i.e. client. Otherwise both files are same, both contains reference to WebCtrlClient directory. But XML file gets created on server with proper data as reply to request from client. Why it happening ?. I think it is not IE web Control issue. I think we are close to solution plz suggest some directions about XML files rights. Waiting For Ur Reply, Regards & Thanks, Unmon. unmon -- modified at 3:16 Friday 26th August, 2005

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Yes this problem occurs when I am accessing our web application on internet. This problem occurs both on IE & FireFox. XML file is gets generated on server when I run my application on internet.I have checked that using terminal service.On internet treeview control gets displayed with graphics but not working & tabstrip control is working properly.:( unmon

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Yes that event is working when I run that application on deployement server locally by acessing terminal service of that m/c. But when I accessed that application on internet, the tree node didn't get expands. Can please help me ? I think there may be some security or permission issues related to config file. Thanks For Reply.:) Unmon

    ASP.NET sysadmin help data-structures

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Yes I have uploaded the all the runtime component. TabStrip control is working properly but TreeView control only gets displayed. It is not expanding the nodes. I am binding it to XML file by setting TreeNodeSrc property. It is working properly on server when application is run locally.:-O unmon

    ASP.NET sysadmin help data-structures

  • IE Web control does not display nodes
    U UnmeshDesale

    Hello Dear, I think u don't have uploaded or copy the webctrlclient folder in wwwroot folder.This folder contains the runtime resources. It contains images & htc files. See it may help u.:-D Unmon

    ASP.NET help

  • IE Web control does not display nodes
    U UnmeshDesale

    Hello Dear, I think u don't have uploaded or copy the webctrlclient folder in wwwroot folder.This folder contains the runtime resources. It contains images & htc files. See it may help u.:-D

    ASP.NET help

  • IE Web Control Deployment Problem
    U UnmeshDesale

    Hii , I am having problem in IE web controls (Tree View Control) after deployment on server. TabStrip control is working properly but TreeView control is not working. But locally on Server TreeView control is also working but at the time remote access it is not working. Please Help me.:(( Unmon

    ASP.NET sysadmin help data-structures
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups