User Profile

Collapse

Profile Sidebar

Collapse
AnuSumesh
AnuSumesh
Last Activity: Aug 27 '09, 01:18 PM
Joined: Aug 4 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hi,
    Thanks for reply, but ASP.Net validator control are server side validation, not for client side validation.

    Anyways , my problem is solved to some extent by using user defined <asp:button> in wizard control.

    Is there any way to access the activestepindex property of wizard in javascript so that acc. to the current step i can validate the fields on client side?

    Thanks in advance.
    ...
    See more | Go to post

    Leave a comment:


  • client side validation on click of wizard naviagtion buttons

    Hi,

    I am using asp:wizard control in my application to collect data from user.
    I want to validate the input data on click of each next button.
    I want to use clientside script to avoid the wastage of time (taken in posting data to and from server).

    But i am unable to find the control in c# code file.
    My code is:
    Code:
    <StepNavigationTemplate>
       <asp:Button ID="startnext"
    ...
    See more | Go to post

  • Reading XML Node_text using microsoft.xmldom

    Hi,

    I want to read the text property of XML file.
    My xml file is as follows:

    Code:
    <?xml version="1.0"?>
    
    <Domain_Credentials>
    	<User> anu </User>
    	<Password> admin </Password>
    	<SearchBaseDN> dc=def,dc=com </SerachBaseDN>
    	<Host> abc.def.com</Host>	
    </Domain_Credentials>
    ...
    See more | Go to post

  • AnuSumesh
    started a topic code to upload multiple files over network

    code to upload multiple files over network

    Hi

    We have an application where we can upload file from client machine to any shared device on the network.
    Now our requirement is to upload multiple files over the network.
    e.g. to path domain_name\com puter_name\shar e_name\
    And I have to write the code in asp.

    Can anyone help me? can anyone give me some code to upload multiple files over network where destination path is in domain_name\com pute...
    See more | Go to post

  • AnuSumesh
    replied to Editing client side registry
    I want the solution for IE browser and XP SP3 OS.
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    started a topic Editing client side registry

    Editing client side registry

    Hi,

    One of our customer has following requirement:
    When user login to web site, some key should be added to client side registry and when he logs off, then that key should be deleted from registry.

    I know that editing client side registry is not safe but our client has this requirement.

    Can anyone please help me how can we edit client registry?

    Regards,
    Anu
    See more | Go to post

  • Hi

    Thanks to All. I have solved my Fixed header issue
    Refer to link
    http://www.developer.com/lang/jscrip...comment=2784-0

    Now next issue is selecting row at client side without going to server side.

    Any help on this issue.

    Thanks & Regards,
    Anu...
    See more | Go to post

    Leave a comment:


  • Thanks For Reply.

    Actually we have developed a control with gridview and using that control in whole web site. And our project is also complete.
    But now we want to just modify that control which renders GridView on the page.

    Can you please help me first in giving "Fixed Header" Solution of this problem?
    I don't have much practice in this area but this task is given to me and i have to complete...
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    started a topic using 32-bit dll in 64-bit OS machine

    using 32-bit dll in 64-bit OS machine

    Hi,

    I want to use some MS dlls and some our own dlls (which are for 32-bit machine) in 64-bit machine.
    Someone told me to write a wrapper for 32-bit dlls and compile them with Any CPU" option.
    I am new to c#. Please anyone can tell me how can I write a wrapper?

    Actually we have developed project using all these dlls for 32-bit system.
    Now we have to make this project to run under 64-bit machine...
    See more | Go to post

  • fixing <asp:gridview> header row and selecting rows at client side

    Hi All,

    I am using <asp:Gridview > to display my data.
    I am adding columns and rows dynamically.
    I am facing following issues:
    1.
    I want scrollbars around the gridview and for this purpose i used <div style="overflow :auto"> and its working fine. But issue is that the header row also scroll down with scrollbar and i want to fix header row .
    I searched on google and found a lot...
    See more | Go to post

  • IE7.0 and cookies are enabled for https site.
    See more | Go to post

    Leave a comment:


  • One more point..... I tried same in firefox and its working fine means I am able to retreive http_referer on first time access in mozilla but not in IE.

    Anu
    See more | Go to post

    Leave a comment:


  • Why server variable "http_referer" is empty first time?

    Hi,

    I have created two web pages say first.asp and second.asp.
    first.asp has a link of second.asp and username is embedded in url of second.asp.(second.asp?user name=dvhsdghsdg)

    Second.asp has a link for some https site say securelogin.asp and i want to access the server variable "referer Url" to retrieve username in https login page.

    The issue is : When first time i access securelogin.asp...
    See more | Go to post

  • AnuSumesh
    replied to Check For Revoked Certificate in ASP
    Thanks for reply.

    I am using this collection only and able to get all the details.
    But this collection does not contain details about Revoked Certificate.
    For "Revoked Certificate", I think we have to contact Certificate Authority to get the Certificate revokation List.
    But I dont know how to contact CA using ASP(VBScript).
    I have searched on google also but no help.

    Thanks,
    ...
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    started a topic Check For Revoked Certificate in ASP

    Check For Revoked Certificate in ASP

    Hi,

    I have developed one application which should be accessible only if valid certificate from particular CA is installed on client browser .
    I am using VBscript for writing the code.
    I am using Request.ClientC ertificate collection to get the details of certificate for validation purpose.
    Now i want to make a check that if certificate is revoked by the CA then client should not allowed to access that application....
    See more | Go to post

  • AnuSumesh
    replied to using C# dll methods in asp
    Thanks a lot.

    I have tried your option also but its also giving output "UNKNOWN".

    Actually i want to call this method(returns dictionaryobjec t) in asp page.

    Thanks,
    Anu
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    replied to using C# dll methods in asp
    Hi
    Thanks for considering my problem.

    DLL method code is as follows:

    Code:
    public Dictionary<string, string> AdmEnumerateDomains()
            {
                Dictionary<string, string> dic = new Dictionary<string, string>();
                dic.Add("anu", "female");
                return dic;
            }
    ASP code(using jscript)...
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    replied to using C# dll methods in asp
    using C# dll methods in asp

    Hi All,

    I have created one dll in c# and using that dll in ASP programs. All dll methods are working fine ion ASP except one method that returns dictionary object.
    When i am calling that method in asp (using jscript), its giving error "object unknown".

    My asp code is as follows:

    Code:
    var cls=new ActiveXObject("shareaccessanu.FileOperations");
    ...
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    replied to getting mapped drives
    in .NET
    Thanks for reply. I am using the same system.text.enc oding but please guide me how i can test for the same on my window xp machine (For japanese)?
    See more | Go to post

    Leave a comment:


  • AnuSumesh
    replied to getting mapped drives
    in .NET
    Can you Please help me in writing code in C# for supporting Double Byte Character support for the same application?

    Thanks
    Anu
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...