Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

Jax_qqq

@Jax_qqq
About
Posts
55
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Datagrid paging-c# windows application
    J Jax_qqq

    Hi, As per my understanding after every edit or add you must be binding your grid somewhere and i think you are not setting its current page index... Hope it will work... Thanks

    ~Anuj~

    C# help csharp css database

  • Capturing Complete Webpage as an Image
    J Jax_qqq

    Dinesh, I have used the same code from code project only and it’s working just fine for me... So please specify where exactly u r facing problem...

    ~Anuj~

    C# com

  • DataGrid paging not working
    J Jax_qqq

    Hi all, I am reandering a Data Grid from my web part containing a paging event its giving me post back but grid is rendering twise on the page. Any suggestion??? protected override void CreateChildControls() { DataTable data = null; string[] columnArray = null; bool IsColumns = false; DataTableValidationStatus tableStatus; try { if (!String.IsNullOrEmpty(Columns)) { columnArray = Columns.Replace(" ", "").Split(','); IsColumns = true; } data = GetDataTable(); tableStatus = Utility.ValidateDataTable(data, true, true, IsColumns, columnArray); if (tableStatus == DataTableValidationStatus.Valid) { data.Locale = System.Globalization.CultureInfo.InvariantCulture; grid.EnableViewState = true; grid.AutoGenerateColumns = false; grid.AllowPaging = true; grid.PageSize = PageSize; grid.CurrentPageIndex = currentpageindex; grid.PagerStyle.Mode = PagerMode.NextPrev; grid.PagerStyle.CssClass = PagerStyleCssClass; grid.CssClass = GridCssClass; grid.AlternatingItemStyle.CssClass = AlternatCssClass; grid.HeaderStyle.CssClass = HeaderCssClass; grid.ItemStyle.CssClass = ItemCssClass; grid.Width = System.Web.UI.WebControls.Unit.Percentage(100); grid.PageIndexChanged += new DataGridPageChangedEventHandler(this.grid_PageIndexChanged); grid.DataSource = data; grid.DataBind(); Controls.Add(grid); } } private void grid_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e) { currentpageindex = e.NewPageIndex; BindGrid(); }

    Anuj

    C# css design tools question

  • Creating deployment
    J Jax_qqq

    Ben is absolutely right and just want to add one more thing make sure u have taken all resources with the setup used by released Dlls Cheers :)

    Anuj

    C# design sysadmin debugging business question

  • How to send HTTP request from C# code?
    J Jax_qqq

    No that was just a example...and yes try to understand requirement! "I want to open a user specified URL from C# code"...

    Anuj

    C# csharp tutorial question

  • How to send HTTP request from C# code?
    J Jax_qqq

    use System.Diagnostics.Process.Start("http://www.google.com"); put your URL in place of google.com Enjoy ;)

    Anuj

    C# csharp tutorial question

  • datareader and dataset
    J Jax_qqq

    I wanna ask a question bout datareader and dataset. If i execute 1 Sp with 2 queries in it as select * from employee and select * from Company bothe this SP's result i execute in dataset as well as datareader at a time. so what o/p it will show in each -datareader and dataset ?

    JAX

    Database question sharepoint

  • Client Side Caching using sqlserver express ??
    J Jax_qqq

    When some one first time start my application then i need to install sqlserver express 2005 at client side, then i have to create a database into it where i ll sync data from my web service to client side database i have written a thread for this. but no idea how can i install sql xpress at client side using c#. even if we can do this using installation wizard that will be also ok. i m totally confuse abt the same pls help me out. and even if u have done this pls send me your chat id we can chat on this when ever u get time. Thanx Anuj

    C# help question

  • Client Side Caching using sqlserver express ??
    J Jax_qqq

    Hi all, I m working on a desktop based application which talks to web service. i want to do some client side caching sort of thing for this application, like when user install my application then it has to install sqlserver express also at client side "if not found" where I can store some frequently used information. But i have no idea abt this, how can i do this STUCK UP :(( pls help ASAP... Thanx in advance Anuj :)

    C# help question

  • Webbrowser control - opening link in new window
    J Jax_qqq

    Where i ll find this "axWebBrowser" class...Pls send the namespace. Aur it's an coponent u r using...:) Anuj

    C# help

  • DataGridView Problem? [modified]
    J Jax_qqq

    Hii All, I m working on a Desktop Based Application in C#. I need to bind the data in datagrid in the following format -> |---------------------------------------------------------------------| | Some Text in Link Button | | some Text in a label | | Some Text in lable ChekBox | |---------------------------------------------------------------------| | Then 2 nad Row and so on.... | | | | | | | |---------------------------------------------------------------------| Thanx Anuj -- modified at 1:55 Friday 23rd June, 2006

    C# csharp help question

  • late binding
    J Jax_qqq

    Boss what u want... u want to execute your script on button click...right if not then send me your code so i can understand what u r trying to do. else write the whole scenario...what to do and when to do. Thanx Anuj

    ASP.NET csharp java asp-net wpf wcf

  • problem in openning window [modified]
    J Jax_qqq

    Just cut and paste link in browser... Anuj

    ASP.NET help html sysadmin docker

  • problem in openning window [modified]
    J Jax_qqq

    http://www.gymcompare.com/GymCompare/ProductInfo.aspx?pid=29367 Follow the link and click on "Click image to Zoom" this is what i have done by the given code... Thanx Anuj

    ASP.NET help html sysadmin docker

  • problem in openning window [modified]
    J Jax_qqq

    Is page opening in the same browser only... because i m using the same code what u have writen and it's working fine from my side. Here is code what i have written... window.open(url,"Page","resizable=yes, location=no,directories=no left=80, top=100 height=450, width=500, status=yes, scrollbars=yes, titlebar=No" ); i hope this will help u. ;) Thanx & regards Anuj Kamthan Software Developer Solversa Technologies, Pune - 411007, India. http://www.solversa.com

    ASP.NET help html sysadmin docker

  • Email Sending in ASp.NET as per user needs
    J Jax_qqq

    Hii Bhawna Have u set this property... MailMessage mm = new MailMessage(); mm.BodyFormat = MailFormat.Html; Actually i m not able to understand your code in writen in vb... but what ever i understand i think it's right...and it should work.. try with this property...and let me know... Anuj

    ASP.NET tutorial csharp asp-net database

  • Copy Constructor
    J Jax_qqq

    Hei Laxman r u giving Interview or what... Hahaha Anuj Kamthan Software Developer

    C / C++ / MFC help

  • C#.net
    J Jax_qqq

    BOSS What u wants to search.... Anuj Kamthan

    C# csharp

  • late binding
    J Jax_qqq

    I m not getting what exactly u want can u elaborate some more... u can write in code behind like this to add JSFunction at runtime objButton.Attribute.add("onclick","javascript:return functionName();"); string strScript= ""; strScript = ""; strScript = strScript + "function functionName(){"; strScript = strScript + "if (confirm('Are you sure to perform this action?')==true)"; strScript = strScript + "{return true;}"; strScript = strScript + "else"; strScript = strScript + "{return false;}}"; strScript = strScript + ""; Response.Write(strScript); Thanx Anuj Kamthan

    ASP.NET csharp java asp-net wpf wcf

  • Using Javascript confirm box in Asp.net
    J Jax_qqq

    see this what i have done... Button1.Attributes.Add("onclick","javascript:return confirmReject();"); string strScript= ""; strScript = ""; strScript = strScript + "function confirmReject(){"; strScript = strScript + "if (confirm('Are you sure to perform this?')==true)"; strScript = strScript + "{return true;}"; strScript = strScript + "else"; strScript = strScript + "{return false;}}"; strScript = strScript + ""; Response.Write(strScript); i have this code in pageload only...and it's working fine... i hope this will help u out Thanx Anuj Kamthan Software Developer Solversa Technologies, Pune - 411007, India. http://www.solversa.com -- modified at 6:22 Monday 22nd May, 2006

    ASP.NET csharp javascript html asp-net question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups