User Profile

Collapse

Profile Sidebar

Collapse
ajl
ajl
Last Activity: Mar 15 '07, 06:04 AM
Joined: Jan 25 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ajl
    replied to How to display only alphabets?
    in .NET
    You can use ASP.NET's CustomValidator control to validate the textbox control.

    Code:
    <asp:TextBox ID="textbox1" runat="server" CausesValidation="true" ></asp:TextBox>
     <asp:CustomValidator ID="cvalidator" runat="server" ControlToValidate="textbox1" ErrorMessage="Not a letter or whitespace" ></asp:CustomValidator>
    
    If you are using
    ...
    See more | Go to post
    Last edited by Niheel; Nov 19 '10, 05:26 PM. Reason: added code tags

    Leave a comment:


  • ajl
    replied to Security Exception in ASP.NET application
    in .NET
    My web.config file looks something like this.

    <configuratio n>
    <system.web>
    <httpModules>
    <add name="LogModule " type="LogModule "></add>
    </httpModules>
    <compilation debug="true"/>
    <authenticati on mode="Windows" />
    <identity impersonate="tr ue"/>
    ...
    See more | Go to post

    Leave a comment:


  • ajl
    started a topic Security Exception in ASP.NET application
    in .NET

    Security Exception in ASP.NET application

    I am getting following error on accessing a asp.net application from virtual directory /website.

    Please suggest me the solution.


    Server Error in '/website' Application.
    --------------------------------------------------------------------------------

    Security Exception
    Description: The application attempted to perform an operation not allowed by the security policy. To grant this...
    See more | Go to post

  • ajl
    started a topic list of open files in a shared folder
    in .NET

    list of open files in a shared folder

    I need to list all users who have opened a file in a shared folder.
    See more | Go to post

  • ajl
    started a topic Opening Excel sheet using Excel object in C#
    in .NET

    Opening Excel sheet using Excel object in C#

    I need to find out the user who has already opened the Excel sheet. I donot want to set DisplayAlert to true.
    See more | Go to post
No activity results to display
Show More
Working...