User Profile

Collapse

Profile Sidebar

Collapse
varunkumarid
varunkumarid
Last Activity: Jun 2 '13, 07:28 AM
Joined: Aug 9 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hitting F5 after submit the page in asp.net problem?

    Hi to all,

    I have web page with submit button, after submit the page when the user press F5 to refresh the page it'll do the thing which was done by last request.

    I have omit this by redirecting again the same page in submit_click function in C# Code behind itself.

    but i feel it'll create some performance problem when number of user's hit is increase.

    I have tried Server.Transfer also. but...
    See more | Go to post

  • Download File from C# through Web Method via Ajax call?

    I have tried to download the file from the server through the webmethod but it has not work for me. my code as below
    Code:
    [System.Web.Services.WebMethod()]
    public static string GetServerDateTime(string msg)
    {
        String result = "Result : " + DateTime.Now.ToString() + " - From Server";
        System.IO.FileInfo file = new System.IO.FileInfo(System.Web.HttpContext.Current.Server.MapPath(System.Configuration.ConfigurationManager.AppSettings["FolderPath"].ToString())
    ...
    See more | Go to post

  • how to validate the controls inside the coda slider?

    i have the coda slider control with asp.net controls like radionbuttonlis t and textboxes

    like as follows
    Code:
      <div class="panel" title="Mandatory" id="panel1">
                        <div class="wrapper">
                            <h3>
                                Mandatory</h3>
                            <div>
    ...
    See more | Go to post

  • How to get the Check box Id when the textbox gets changed in gridview using jquery?

    Hi to all

    I've gridview , in that i've a checkbox and multiple controls like dropdownlist & textboxes.

    When any controls has changed like dropdownlist may select by user or text typed by user in textbox insied the gridvidew i've to check the checkbox according to the particular row.

    How to do that

    Please help me

    Thanks to all.....
    See more | Go to post

  • varunkumarid
    started a topic How to See router set up page?

    How to See router set up page?

    Hi to all,

    I'm working under static ip address, in which i could not open router set up page. when i use 192.168.0.1, it just redirect to one default "Red Hat Enterprise Linux Test page".

    I don't know how to access the router web page for configure the port.

    Thanks to all
    See more | Go to post

  • How to Start the C# Console Application when windows os is Switch On?

    Hi to all

    I have one C# Console Application in Server.

    If suppose the Server is switch off by some reason and somebody switch on the server means i have to rerun the application through the Coding.

    Thanks to all
    See more | Go to post

  • How to use the JQuery trim() function into normal Javascript file?

    Hi to all

    I am using following line code to trim the unwanted space in string on client side whatever the enduser will type into the textbox

    Collapse
    Code:
    if(document.getElementById("txtUserName").value.trim() == ""){
           ..........
           ..........
    }
    when this line execute by the browser on clinet side

    it shows the error "Object...
    See more | Go to post

  • The requested member of the collection does not exist ?

    Code:
     
    object oMissing = System.Reflection.Missing.Value;
                    object ofileName = "E:\\Template.dotx";
                    Word.ApplicationClass myWordApp = new Microsoft.Office.Interop.Word.ApplicationClass();
                    Word.Document myWordDoc = myWordApp.Documents.Add(ref ofileName, ref oMissing, ref oMissing, ref oMissing);
                    myWordApp.Visible = true;
                    myWordApp.Activate();
    ...
    See more | Go to post

  • How to Decrypt the Stored Procedure in Sql Server 2008?

    Hi to all


    One of my collegue was created that sp's now i want to manage all those things, i dont know how to decrypt the procedure's, we lost the copy of that procedure.

    I am using the following code to decrypt my procedure, but it did'nt work to get the procedure it always give the null value.

    Code:
    create  PROCEDURE sp_decrypt_sp (@objectName varchar(50))
    AS
    DECLARE  @OrigSpText1
    ...
    See more | Go to post

  • How to get the Client side generated button into Code behind?

    Hi to All, I have created the button in client side. When the user going to click the button how can i get the event in code behind?

    Here is my javascript code.

    Code:
                      
    
     function CreateDeleteButton() {
         debugger;
         var Delete = document.getElementById('ctl00_cphMaster_tdbtnSave');
         var btnDelete = document.createElement("BUTTON");
         Delete
    ...
    See more | Go to post

  • How to Lock the User Entry while Web Service is Running?

    Hi to all,

    I have a Web Service to Check the User Name is Already Exists or Not.

    I have called the Web Service In .cs(Code Behind) file like Following.
    Code:
     txtUserName.Attributes.Add("onChange","return CheckUserNameAvailability()");
    if Suppose the user enter the name and suddenly click the save button the onChange event wont perform Suddenly before the control is going to server,...
    See more | Go to post

  • How to Block paste Option on Client Screen?

    Hi to all.

    I want to Block Copy and Paste Option only on client Screen not to Block entire mouse right click?

    Is it Possible? Please give me the Solution.

    Thanks and regards.
    See more | Go to post

  • How to Get the Client side Binded Value by Javascript in C#.net Server Side?

    Hi to all,

    I bind the value to DropdownList in Client Side by Javascript.

    If i send the any request for subsequent data manipulation (not save) the data wont come to server (C#.net)and also the data in dropdownlist values are vanished.

    How to overcome this problem.

    Is there any method to remember the dropdownlist value in client side.

    Thank You
    See more | Go to post

  • How to Compare the Textbox Client id in JavaScript?

    Hi to All,

    I want to Compare the Two Textbox ClientId not a Value of them, whether clientid is equal i perform something oterwise not.

    Code:
    for (var i = 2; i <= document.getElementById('ctl00_cphMaster_grdPaymentAmount').rows.length - 1; i++) {
    if(document.getElementById('ctl00_chMaster_ctl04_txtPayAmount') == document.getElementById('ctl00_chMaster_ctl0' + i +'_txtPayAmount'))
    alert("Some");
    }
    ...
    See more | Go to post
    Last edited by Niheel; Jul 7 '10, 03:26 PM. Reason: Please use code tags to display code

  • how to solve this error "Exception from HRESULT: 0x800A03EC"?

    The Error on line 99 when i execute this code
    Code:
     [STAThread]
    
           protected void Generate_Click(object sender, EventArgs e)
            {
                int io = 0;
                System.Data.DataTable workTable = new System.Data.DataTable();
                workTable.TableName = "VendorList";
                workTable.Columns.Add("ITEM_NAME");
                workTable.Columns.Add("ITEM_QUANTITY");
    ...
    See more | Go to post
    Last edited by varunkumarid; Jul 6 '10, 06:54 AM. Reason: To Improve the Question

  • varunkumarid
    started a topic How to upload the excel file to server?

    How to upload the excel file to server?

    Hi to everybody.

    I am using C#.net for convert Excel file to DataGrid for Client Request.

    When i using the page to convert the excel to datagrid at localhost it worked properly, but it will not work when i'm publish the site.

    The error is
    System.Data.Ole Db.OleDbExcepti on: The Microsoft Jet database engine cannot open the file ''. It is already opened exclusively by another user, or you need permission...
    See more | Go to post
    Last edited by Niheel; Jun 12 '10, 04:48 PM. Reason: please use code tags when posting code

  • How to ensure the mail is sent or not in C#.Net ?

    Hi to Everybody,

    I have use the C#.net for send the E-mail as follows

    MailMessage omsg = new MailMessage();
    omsg.From = new MailAddress("sa thiy.03@gmail.c om");
    omsg.To.Add(new MailAddress(txt Email.Text));
    //omsg.Subject = txtSubject.Text ;
    //omsg.Body = txtContent.Text ;

    if (txtSubject.Tex t.Trim()...
    See more | Go to post

  • How to Get the Mail delivery Reports in C#.net?

    Hi to Everybody,

    I sent the mail to my gmail id through C#.net code...

    But i didn't receive the mail..

    how to get the Delivery status from c#.net
    See more | Go to post

  • How to Store More than One Value at Same Cookie name?

    Hi to everybody

    How to Store More then one values(ie., Divids) at Same Cookie name in JavaScript?

    Or

    is there any methodology to kept more than one value at Cookie in Javascript?
    See more | Go to post

  • How to enable the getCookie and SetCookie method in javascript?

    Hi to everybody.

    I have the animatedCollaps e.js file in C#.net ..

    In this File the set and Get Cookie method is Calling by the Init method of animatedCollaps e.js file through like

    animatedCollaps e.init()

    In this method i have Store the Div Status of the Page..

    But it could not work.

    How can i make it enable?
    See more | Go to post
No activity results to display
Show More
Working...