User Profile

Collapse

Profile Sidebar

Collapse
vikysaran
vikysaran
Last Activity: Sep 15 '09, 07:49 AM
Joined: Nov 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • vikysaran
    started a topic AJAX Enabled web.config file on GoDaddy

    AJAX Enabled web.config file on GoDaddy

    Hello,
    i'm getting few error on my AJAX enabled application when i'm uploading it to GoDaddy server. Its firsttime I'm using godaddy hosting.

    can anybody send me web.config file that's working on godaddy server and that is AJAX enabled.!?

    My mail address is <email removed>
    See more | Go to post
    Last edited by Frinavale; Sep 10 '09, 04:54 PM. Reason: Removed email address. Posting your email address, or someone else's email address is against the forum's rules.

  • vikysaran
    replied to Question on trustLevel and SecurityPolicy
    in .NET
    Thanx a lot, finally somebody respond me.

    we dont need any Driver ti install for SQLite DB. my application in already running successfully on My Brinkster's Dedicated server. the url is http://www.rstrings.com/appt

    I raised a ticket to GoDaddy support and they replied i would have to Hire there virtual dedicated server OR i need to create application on .Net framework 1.1 environment.

    now i have to look...
    See more | Go to post

    Leave a comment:


  • vikysaran
    replied to Question on trustLevel and SecurityPolicy
    in .NET
    Problem on Security policy, trust level and SQLite DB

    Hello,

    Hello i made an application on ASP.Net with SQL Server as Database. and for some purpose i used SQLite DB also. The application was running successfully on locally but i have to upload it on GODaddy.com service provider.

    Their shared hosting account only allows application running on medium Trust level. i searched over internet and found few...
    See more | Go to post

    Leave a comment:


  • vikysaran
    started a topic Question on trustLevel and SecurityPolicy
    in .NET

    Question on trustLevel and SecurityPolicy

    Hello,
    I have my new application on Godaddy.com server. Previously it was giving error on Permission. i asked support about it and they told me to set trust level MEDIUM so I search over the internet and got http://msdn.microsoft.com/en-us/library/ms998341.aspx article.

    as described in article, i made 'customWeb_medi umtrust.config' file and place it into Base Directory (Am i right???)

    at compiling it is giving...
    See more | Go to post

  • vikysaran
    started a topic Help- File upload using ajax

    Help- File upload using ajax

    Hi,
    Please check the attachment http://www.golsinc.com/app7/AJAXEnabledWebSite.zip
    Here i made a small application for file upload. Made a huge form and need image upload without page refresh here.

    i tried a lot, searched over net but finally my page is posting back on button click. If i dont use

    <Triggers>
    <asp:PostBackTr igger ControlID="Butt on1" />
    </Triggers>...
    See more | Go to post

  • vikysaran
    replied to asp.net mouse move coordinte change
    yes i got the solution of my problem.
    FYI now-

    Hello,
    please check
    1. http://www.golsinc.com/app7/demo1.aspx (On IE)
    and
    2. http://www.golsinc.com/app7/ (On Firefox)

    when you click on image on 2nd url i gave, it creats a Circle, Triangle and Square repectively. but i does not show the coordinate where the pointer is and at every click page posts to the server.

    in 1...
    See more | Go to post

    Leave a comment:


  • vikysaran
    started a topic Mouse Move and Click application help
    in .NET

    Mouse Move and Click application help

    Hello,
    please check
    1. http://www.golsinc.com/app7/demo1.aspx (On IE)
    and
    2. http://www.golsinc.com/app7/ (On Firefox)

    when you click on image on 2nd url i gave, it creats a Circle, Triangle and Square repectively. but i does not show the coordinate where the pointer is and at every click page posts to the server.

    in 1 url, page doesnt posts back and has all the features i need besides...
    See more | Go to post

  • vikysaran
    started a topic asp.net mouse move coordinte change

    asp.net mouse move coordinte change

    hi,
    please check http://www.golsinc.com/app7/
    i need to make it in such way that when user moves his pointer inside the image, it generates coordinated inside the textbox. after one click it stores the value the when again user moves his pointer then movement looks inside 2nd textbox.
    likewise he does for 3rd textbox.
    Currently in this application i am not able to show changing values on mouse move. all 3 types of clicks...
    See more | Go to post

  • vikysaran
    replied to help me about window's authentication
    in .NET
    Hi,
    on the application I'm working is for Internet use. here a company will save their Attendance sheet on daily basis. And we have to make it on windows authentication mode. The problem is that a lot of our customers use a workgroup configuration for their network not Domain configuration. and as i learned till now, for an application for Windows authentication works on Intranet only. so i want to ask is it possible to make application using...
    See more | Go to post

    Leave a comment:


  • vikysaran
    started a topic help me about window's authentication
    in .NET

    help me about window's authentication

    Hello friends,
    i am developing a application and i have to implement Windows Authentication for it. we are connect on LAN through a Hub. here are 4 PC connected on star topology. They all are directly connected with network hub and we use a WORKGROUP to access our systems.

    I searched it over the internet and i got that it would be done using Intranet. because it needs PC should be connected on a domain.

    what should...
    See more | Go to post

  • vikysaran
    started a topic delete rows from two tables using one sql statement
    in DB2

    delete rows from two tables using one sql statement

    Hi,
    i want to delete rows from two tables using one sql statement.

    One table is tblEmployee and other is tblUser and i want to delete all record in both of table whose UserID is EE00001
    See more | Go to post

  • vikysaran
    replied to bringing opened form to front
    {
    this.Show();
    Thread.Sleep(45 00);
    this.Close();
    frmMain f1 = new frmMain();
    f1.BringToFront ();
    }
    See more | Go to post

    Leave a comment:


  • Thanx Mr. paltter,
    I'm just a beginner in c#
    your code Color.FromArgb( 230, 230, 230) worked great.
    Let me know if i can put image in tabs. I'm attaching screenshot (made by a graphic designer) that what want exactly.

    Also i want to color the Backgroud of Tabs also which is taking default window color right now. Click here for screenshot.
    Thanx

    Existing-


    Newer-
    ...
    See more | Go to post

    Leave a comment:


  • C# App: How to convert Color name to Hexadecimal code

    This is my code bellow:-

    Code:
    private void _tabControl1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
            {
                Font f;
                Brush backBrush;
                Brush foreBrush;
    
                if (e.Index == this._tabControl1.SelectedIndex)
                {
                    f = new Font(e.Font, FontStyle.Bold | FontStyle.Regular);
                    backBrush
    ...
    See more | Go to post
No activity results to display
Show More
Working...