User Profile

Collapse

Profile Sidebar

Collapse
coldflame
coldflame
Last Activity: Nov 17 '06, 01:50 PM
Joined: Jul 19 '06
Location: Pakistan
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • coldflame
    replied to How to mail a web page in ASP.Net
    in .NET
    Try some local page that is on your server by giving its url....
    See more | Go to post

    Leave a comment:


  • using xpath you can Access node values like

    you want to access the value of root node

    /.

    for a content under root

    /content/.

    To Access attribute value
    if you have an attribute id on the content dat is under root.
    /root/content/@id

    Hope this will work.

    It works both with FireFox and IE , but if did't work then dat means you have...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Row Span problem
    If you suggest div then how to use it. I just understand from your answere is that you have said to use to div.

    And when i increased the contents in right panel the menu cell occupies more space . it did't do with contents....
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Back button
    in .NET
    Hi,

    the problem is that when you press the back button it picks the page from the browser cache and shows it so i am giving the some line code for to place in the page for that you want refresh. So when you write this code in the page it will not pick the copy from cache but request from server to send the fresh copy.

    The code is in vb syntax you can easily check the syntax in c# there will be no problem.
    ...
    See more | Go to post

    Leave a comment:


  • coldflame
    started a topic Row Span problem

    Row Span problem

    Hi

    I am facing a problem with row span the code is given below. problem is that when i the contents of the right panel increased the first cell dat have menu get unnessary space , i did't know how to get rid of this space due to which i am having problem.

    <table height="400" border="1" width="100%" cellpadding="0" cellspacing="0" >
    <tr>
    <td...
    See more | Go to post

  • Hi,

    You can check the extension while using the programe , by
    if Fileinfo.Extens ion == "extension_name " then
    'Do this
    end if...
    See more | Go to post

    Leave a comment:


  • Hi,

    Can you please explain your scene a little bit more as it is a little confusing.

    Regards...
    See more | Go to post

    Leave a comment:


  • Hi hope this will give you some idea

    <asp:DropDownLi st id="methdselect " runat="server" datasource='<%# Methodlist.item s %>' SelectedIndex=' <%#GetStateInde x(DataBinder.Ev al(Container, "DataItem.Metho d")) %>'></asp:DropDownLis t>

    Protected Function GetStateIndex(B yVal Method As String) As Integer
    dim i As Integer = Methodlist.Item s.IndexOf(Metho dlist.Items.Fin dByText(Method) )...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to DataGridview in C# pls I need help
    in .NET
    Hi,

    I want to know you are binding Datagridview with xml file or Database and again you want to write the data in xml file or in text file.

    Regards...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Can treeview for .net 1.1 on windows 2003?
    in .NET
    Did you complie the treeview control according to given instructions Some problem can come because the csc.exe given in the build.bat is not found. You search it in winnt directory usually you found it in the x:\winnt\dotnet framework\10.11 \csc.exe edit build.bat file and paste this path with the csc.exe then save it and run it a dll file created. Create a new asp.net project paste this file in bin directory. Go to add remove controls on control...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Dynamically modifying Table
    in .NET
    Hi , Sorry for late reply , Caz i was busy a little bit.

    Hmm i have seen a little bit of your good but its too long to read it out.

    So i have made an example for you that will help you how to create and delete rows on dynamically , I used to work in VB Script , not too much changed from c# with respect to function but syntax is changed. hope this will help you

    'Code

    <%@ Page Language="VB"...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Arrays (Please Help)
    in .NET
    i hope that will give some idea

    dim str(3) as string ' An array of string with 3 indexes

    Using an array is simple

    str(0) = txtbox1.text
    str(1) =txtbox2.text
    str(2) =txtbox3.text...
    See more | Go to post

    Leave a comment:


  • Hi ,
    Well i can provide the VB Code as sample, as i have not so much time to convert it to c#, So if you want please tell......
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Dynamically modifying Table
    in .NET
    Hi

    Can you please give me the code, i will guide you according to your requirement.

    Regards...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Adding two controls in the same cell...
    in .NET
    Hi Again,

    Ok so you can handle it in DataGrid , Data Grid is a bulitin control for asp.net through which you can achieve your above described goal.

    You can achieve through manaul code as well and i can give you an idea about it as well, but i will recommand that if already a control is given so why not we use it.

    You can get many help on DataGrid Control.
    if you have any problem please feel...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Adding two controls in the same cell...
    in .NET
    [Your Reply ]

    Can you please tell me the complete Scene what you what to do, :confused:

    But answer to your question is that you YES we can add two controls to a single cell. And also please tell me that are you trying to add controls through code or manually in the table cell,

    And if you are getting some kind of error already please write that also

    Regards...
    See more | Go to post

    Leave a comment:


  • coldflame
    replied to Dynamically modifying Table
    in .NET
    Hi,

    You have to perform the table creation on the load event of the Page. Because if you did't perform the table creation or any addition of controls on the page, it will not remain next time you load the page, the same thing is happening to you .

    Please fell free to ask if you have any Problem or if you really need a code.
    See more | Go to post

    Leave a comment:


  • you want to use web services i hope???
    See more | Go to post

    Leave a comment:


  • Hi,

    Can you please tell me in which event you are binding datagrid with datatable. if you don't know where you binding you datagrid then perform this

    Make a function where you perform your databinding operaton like
    ' I am writting code in VB (i don't know what you are using)
    public sub perfromBinding ()
    ' you code goes here
    end sub

    ' Now in the page load event
    public...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...