User Profile

Collapse

Profile Sidebar

Collapse
mathewgk80
mathewgk80
Last Activity: Dec 10 '08, 08:46 PM
Joined: Sep 20 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mathewgk80
    started a topic CheckBox problem

    CheckBox problem

    Hi,

    I have a checkboxlist with two checkboxes with values "Family" and "Friends".
    Also i have another checkbox with text "Public".

    I need to get a javascript code which uncheck "Family" and
    "Friends" checkboxes(if they are checked) when the "Public" checkbox is cheked.

    Please help me..

    Thanks and Regards,
    ...
    See more | Go to post

  • mathewgk80
    started a topic Web.sitemap
    in .NET

    Web.sitemap

    Hi all,

    I would like to know how to add Web.sitemap file to a project and work with SiteMapPath control in Asp.net.

    Please help me..

    Thanks and Regards,

    Mathew
    See more | Go to post

  • mathewgk80
    started a topic TextBox validation using regex

    TextBox validation using regex

    Hi,

    I am trying to check whether the textbox contains single quote,double quote and < and > symbols.

    I got the regex to check all the requirements.
    its as shown below.

    str=(document.g etElementById(' txtEnter')).val ue;

    str.match(/([\<\])(1,))* ([\>])/)==null (for checking < and > symbol)

    str.match(["'"])==null (for checking single quote)...
    See more | Go to post

  • mathewgk80
    started a topic Safari Browser Issue
    in .NET

    Safari Browser Issue

    Hi All,

    I would like to know whether there is any difference in loading a page in 3.0 and 3.1 versions.

    Suppose we load a page "Home.aspx" in safari3.0 version. If we again try to load the same page, will it go to server and load the page from server or will it load from cache?? I need that the browser should go to server and find the page and load it..

    in 3.1 version, no such problem exists......
    See more | Go to post

  • mathewgk80
    replied to ListView Properties
    in .NET
    Thanks... Can you help me to retrieve second item in the first row of a ListView.

    Thanks in Advance,

    Mathew....
    See more | Go to post

    Leave a comment:


  • mathewgk80
    started a topic ListView Properties
    in .NET

    ListView Properties

    Hi all,

    I am trying to retrieve values from a ListView. I can find in some sites that

    ListView1.Selec tedItems[0].SubItems[0].Text is the code for retrieving first value from a ListView. But "SelectedIt ems" property is not available. I am using VS2008. c#.net. Any other namespace i have to add? I added "System.Web.UI. WebControls" namespace.

    Please Help me..

    Thanks and...
    See more | Go to post

  • mathewgk80
    replied to Resource File Issue
    in .NET
    Hi Nathan,

    I would like to get the source code for my requirement specified above..

    Please help me..

    Thanks and Regards,
    Mathew...
    See more | Go to post

    Leave a comment:


  • mathewgk80
    started a topic Resource File Issue
    in .NET

    Resource File Issue

    Hi,

    I have to get the dropdownlist values in different languages when i open different versions(langua ges) of same website.

    For example,

    I have a dropdownlist with values "10inch","20inc h". and if i open french site,
    i have to get "10pouces","20p ouces".

    Please help me..

    I am using VS2008...

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

  • mathewgk80
    started a topic Getting the values of checkboxlist

    Getting the values of checkboxlist

    Hi all,

    I have a checkboxlist with 4 list items A,B,C,D. i would like to get the javascrit code which retrieve values from the checkboxlist if the items are checked..
    ie, if i check the list item A and click on a Button i need to get the alert message "Item A".

    Please help me...


    Thanks and Regards,

    Mathew.
    See more | Go to post

  • mathewgk80
    started a topic How to get Yahoo API
    in .NET

    How to get Yahoo API

    Hi,

    I would like to get the Yahoo API Code in .net. Please help me..


    Thanks in Advance,

    Mathew
    See more | Go to post

  • mathewgk80
    started a topic Encrypt and Decrypt a string variable

    Encrypt and Decrypt a string variable

    Hi all,

    I have a string variable called userid and i want to encrypt the userid and store it into another variable using the stored procedure. Again i have to decrypt the encrypted value to the original string value using another stored procedure.

    I am using sql server.

    Please help me...

    Thanks and regards,
    Mathew
    See more | Go to post

  • mathewgk80
    started a topic Getting the path of an image
    in .NET

    Getting the path of an image

    Hi all,

    I uploaded an image (the name of the image is image1) to a folder (the name of the folder is Images) in the solution explorer.The full path of the image is
    "c:\\Docume nts and Settings\\Name\ \DeskTop\\Photo \\Images\image1 ".

    I would like to get the path of the image as "~\Images\image 1" and store it in database.

    Please help me...

    Thanks and regards,...
    See more | Go to post

  • mathewgk80
    replied to grid view problem
    in .NET
    Hi,
    The sample code is given below.....

    Code:
     protected void gdvPurchase_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
    
            try
            {
                GridViewRow row = gdvPurchase.Rows[e.RowIndex];
                string strPurchaseId = txtPurchaseId.Text;
                string strProductNameNew = ((TextBox)row.Cells[0].Controls[1]).Text;
                string strNoOfItems
    ...
    See more | Go to post

    Leave a comment:


  • mathewgk80
    started a topic asp.net security
    in .NET

    asp.net security

    Hi all,
    I have two aspx pages. 1.Home.aspx and LoginPage.aspx.

    In the LoginPage.aspx, the user has to enter the username and password. and click on the submit button. If both username and password is correct, the control is redirected to Home.aspx.

    I used asp.net security feature in this application to set username and password.

    My web.config file is given below.

    <?xml...
    See more | Go to post

  • mathewgk80
    replied to Email address with a +(plus) symbol
    in .NET
    Hi,
    Do you want to exclude it in your validation control or not?

    Regards,
    Mathew....
    See more | Go to post

    Leave a comment:


  • mathewgk80
    replied to executing Stroed procedures using .net
    in .NET
    Hi,
    Code:
     sqlConRowUpdate = new SqlConnection(strConnectionString);
                sqlConRowUpdate.Open();
                SqlCommand SqlCmdRowUpdate = new SqlCommand();
                SqlCmdRowUpdate.Connection = sqlConRowUpdate;
                SqlCmdRowUpdate.CommandText = "procUpdatePDetails";
                SqlCmdRowUpdate.CommandType = CommandType.StoredProcedure;
                SqlCmdRowUpdate.Parameters.Add("@purchaseid",
    ...
    See more | Go to post
    Last edited by Plater; Jan 18 '08, 06:32 PM. Reason: Adding [CODE] tags

    Leave a comment:


  • mathewgk80
    replied to sql Database connection
    in .NET
    Check the statements given below with your's.....

    <configuratio n>
    <appSettings>
    <add key="connection " value="Initial Catalog=Purchas e;Data Source=(local); Integrated Security=SSPI" />
    </appSettings>
    <connectionStri ngs>
    <add name="PurchaseC onnectionString " connectionStrin g="Data Source=(local); Initial Catalog=Purchas e;Integrated...
    See more | Go to post

    Leave a comment:


  • mathewgk80
    replied to asp.net: Gridview Pageindex
    in .NET
    where is the gridview datasource in the PageIndexChangi ng event?...
    See more | Go to post

    Leave a comment:


  • Update panel does not work with .NET Frame work 3.5.

    Hi,

    I'm having problem with AJAX in .NET frame work 3.5. The update panel works fine with VS 2008 built-in server (file system- based). It's not working with Virtual directory created under localhost. Please help.

    Thanks and regards,

    Mathew.
    See more | Go to post

  • Hi Durga,

    int rows = gdvPurchase.Row s.Count;
    string txtProductName = ((TextBox)gdvPu rchase.FooterRo w.FindControl(" txtProductName" )).Text;
    string txtNoOfItems = ((TextBox)gdvPu rchase.FooterRo w.FindControl(" txtNoOfItems")) .Text;
    string txtUnitPrice = ((TextBox)gdvPu rchase.FooterRo w.FindControl(" txtUnitPrice")) .Text;


    This is an...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...