Search

You searched for the word(s): userid:849551

Matching Posts

  • Re: cross tab reports

    hey, is it possible to merge two rows into one rows like: present format: EmpID BankAcc HouseRent Medical Total 1000 101 1000 1000 2000 1001 102 2000 2000 4000 i want in this format: EmpID BankAcc HouseRent Medical Total 1000 101 1000 1000 2000 1001 102 2000 2000 4000
    Posted to Data Presentation Controls (Forum) by jewelhere on 8/8/2009
  • Re: Validation and Decryption in machinekey

    please look at this. hope may helps http://forums.asp.net/t/1309046.aspx Please mark as answer if this helps.
    Posted to Security (Forum) by jewelhere on 8/2/2009
  • Re: Fixing Gridview header

    just create a datatable in .cs file. column name's are same the grid view header. DataTable dtToGrid = new DataTable(); dtToGrid.Columns.Add("Column1", typeof(int)); dtToGrid.Columns.Add("Column2", typeof(string)); dtToGrid.Columns.Add("Column3", typeof(int)); dtToGrid.Columns.Add("Column4", typeof(int)); and call a method: ShowGridAlways(GridViewID, dtToGrid); Session["dtToGrid"] = dtToGrid; in ShowGridAlways: public void ShowGridAlways(GridView
    Posted to Data Presentation Controls (Forum) by jewelhere on 7/25/2009
  • Re: How to get filename extension

    U can get by : System.IO.Path.GetExtension(FileName) or by method: public string GetFileExtension(string fileName) { string extension=""; char []arr=fileName.ToCharArray(); int index=0; for(int i=0;i<arr.Length;i++) { if(arr[i].ToString()==".") { index=i; } } for(int x=index+1;x<arr.Length;x++) { extension=extension+arr[x]; } return extension; } Please mark as answer if this helps u
    Posted to Web Forms (Forum) by jewelhere on 7/12/2009
  • Re: Reset Doesn't work for Label when Using Javascript ..

    hi joeLA , what i gave in previous post is working fine. just add a new form and in both pages copy and paste this. i think it will work. Please mark as answer if this helps u.
    Posted to Web Forms (Forum) by jewelhere on 7/11/2009
  • Re: Reset Doesn't work for Label when Using Javascript ..

    just copy and paste these. hope this works. in asp.net: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body>
    Posted to Web Forms (Forum) by jewelhere on 7/8/2009
  • Re: column width

    just use inside div like this: <div id="divGridView" style="height: 100px; overflow: auto; width: 250px;"> hope this may helps. Please mark as answer if this helps u
    Posted to Data Presentation Controls (Forum) by jewelhere on 7/7/2009
  • Re: Is their a way to clear edit controls in a web form ?

    use javascript in asp.net <script language="javascript" type="text/javascript"> var element; for(var i=0;i<document.forms[0].elements.length;i++) { element=document.forms[0].elements[i]; if(element.type=='textbox') { element.value=""; } } </script> Please mark as answer if this helps u
    Posted to Web Forms (Forum) by jewelhere on 7/7/2009
  • Re: Reset Doesn't work for Label when Using Javascript ..

    Just use this under form tag: <script type="text/javascript"> function fnReset() { document.getElementById("<%=txtMe.ClientID%>").value=""; document.getElementById('<%=lblMe.ClientID%>').innerHTML=""; return false; } </script> <div> <asp:TextBox ID="txtMe" runat="server" Text="Jewel" ></asp:TextBox> <asp:Label ID="lblMe" runat="server" Text="Jewel"><
    Posted to Web Forms (Forum) by jewelhere on 7/7/2009
  • Re: How to obtain tooltip of object via javascript?

    write this under form tag: <script type="text/javascript"> function fnReset() { document.getElementById("<%=txtMe.ClientID%>").title="Something"; document.getElementById('<%=lblMe.ClientID%>').innerHTML=""; return false; } </script> <div> <asp:TextBox ID="txtMe" runat="server" Text="Jewel" ToolTip="hi" ></asp:TextBox> <asp:Label ID="lblMe" runat="server"
    Posted to Client Side Web Development (Forum) by jewelhere on 7/7/2009
Page 1 of 11 (108 items) 1 2 3 4 5 Next > ... Last »