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

jinnyb

@jinnyb
About
Posts
63
Topics
43
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Can any one pls help me on web farm
    J jinnyb

    Can u pls give some more details or article that can help me out pls... Patel Neelesh A

    ASP.NET csharp asp-net help

  • Can any one pls help me on web farm
    J jinnyb

    Hi Can any pls give me some links which explains the basics of webfarm concept in asp.net. Last and not the least can any one pls tell me the difference web farm and web garden Patel Neelesh A

    ASP.NET csharp asp-net help

  • Securig assembly in GAC
    J jinnyb

    I want to secure the asembly in gac so that only my company appications can use this assembly when it is installed on the webserver can u pls kindly tell me how to do it Patel Neelesh A

    ASP.NET dotnet tutorial

  • Securing an Assemebly in Gac
    J jinnyb

    I want to secure the asembly in gac so that only my company appications can use this assembly when it is installed on the webserver can u pls kindly tell me how to do it . Patel Neelesh A

    ASP.NET dotnet tutorial

  • Multicolumn sorting
    J jinnyb

    hey can any one pls tell me how to sort mutiple cloumns in the datagrid control in .asp.net Patel Neelesh A

    ASP.NET csharp asp-net algorithms tutorial

  • Programmatically Creating Datagrid
    J jinnyb

    I have created a datagrid programmatically i want to add the css in the to the items of the of the datagrid in codebehind page .How to do it ? Kindly Help Me out Patel Neelesh A

    ASP.NET css help tutorial question

  • Custom Web Control
    J jinnyb

    Hey thats the problem mate i m not able to set the value .I mean when i set the value of the query in the click event by creating the object of the data grid i m not able to use the value in the Render sub of the control Thanks Kindly give some code for that so that i can make use of it THanks Regards JINNY Patel Neelesh A

    ASP.NET help html database design sysadmin

  • Custom Web Control
    J jinnyb

    Hi I have a datagrid control using the web control library ,now it works fine when i do the following using System; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Xml; namespace WebControlDynamicDatagrid { /// /// Summary description for WebCustomControl1. /// [DefaultProperty("Text"), ToolboxData("<{0}:DynamicDatagrid runat=server>")] public class DynamicDatagrid : System.Web.UI.WebControls.DataGrid { private string txtProp=""; [Bindable(true), Category("Appearance"), DefaultValue("")] public string jinny { get { return txtProp; } set { txtProp = value; } } /// /// Render this control to the output parameter specified. /// /// The HTML writer to write out to protected override void Render(HtmlTextWriter output) { System.Data.SqlClient.SqlConnection mySQLConnect = new SqlConnection("Server = localhost;Initial Catalog = Northwind;UID = sa ; PWD =a"); mySQLConnect.Open(); SqlCommand myCmd = new SqlCommand("select * from orders", mySQLConnect); System.Data.SqlClient.SqlDataAdapter myAdapter = new SqlDataAdapter(myCmd); DataSet ds = new DataSet(); myAdapter.Fill(ds, "Test"); DataGrid dg = new DataGrid(); dg.DataSource = ds.Tables[0]; dg.DataBind(); dg.RenderControl(output); // Controls.Add(dg); // output.Write(dg); } } } and add the control to the tool box and use the drag and drop i get the results but now is the real problem i want the that the sqlquery query be passed by the user when he say clicks the buton on the web form . PLs help i want to send the query dynamically from the form .U might wonder y I m doing so but that is the requirement of the application. Patel Neelesh A

    ASP.NET help html database design sysadmin

  • Webcobntrol Library to make datagrid
    J jinnyb

    Hey can any one pls tell me how to make a datagrid in the using webcontrol library so that i can use it in my project as its the clients requiement so i have to make a datagrid dynamically in the webcontrol library . Pls help Regards JINNY Patel Neelesh A

    ASP.NET help tutorial

  • Dynamically Creating a datagrid
    J jinnyb

    Hey thanks alot for sending me the code but i cannot search on net since our organisation does not have that facility i have do it at my home posted the question .Can u pls tell me how to make datagrid in the webcontrols library since now our project requirement is so that v want make the datagrid in the webcontrols library. Patel Neelesh A

    ASP.NET css help

  • Library Not Registered Error
    J jinnyb

    Hey Can any one pls tell how can solve this major problem I m getting Library Not Registered Error message when i try to open a new project in VS.NET 2003 in windows 2003 server.Pls help me out. Patel Neelesh A

    ASP.NET help csharp visual-studio sysadmin

  • Dynamically Creating a datagrid
    J jinnyb

    Pls help me and suggest me some solutions , i want to create a datagrid in a class file not in aspx page i mean in using a class library when v select project type so the type i selected is class . now i want to genenrate a datagrid in this .cs file and show it no the page that will call this class say on the button click event .Pls help to create a datagrid in the .cs file so that i can call this class in the page and create the grid dynamically Patel Neelesh A

    ASP.NET css help

  • DatGrid Paging Event not firing
    J jinnyb

    hey do one thing in the page load load event write if (!Page.IsPostBack) { some initailization code that u want } hope this will definetly solve ur problem Thanks Regards JINNY Patel Neelesh A

    ASP.NET css algorithms question

  • What is indexing in asp.net
    J jinnyb

    Can any one pls tell me me what is indexing in asp.net and what is the difference betn ecute qurey and execute non query . Patel Neelesh A

    ASP.NET csharp asp-net database question

  • radiobutton forecolor
    J jinnyb

    Dear All, i have 2 radio Buttons on my form viz. Yes & No. i assign the forecolor of these depending on the values i get from the database on page load ie.word 'Yes' in Green & 'No' in Red which is the text of my radio buttons. when the other radiobutton is selected, the color should be appropriately changed (Green for Yes & Red for No) & original forecolor of the radiobutton should be restored in black. but i do not want to utilise the checkchanged event of the radiobutton, as this will require the form to be posted back. this has to be done thro' javascript. but i do not get the forecolor attribute of the radiobutton for assigning its color. Kindly reply at the earliest. Patel Neelesh A

    ASP.NET javascript database

  • DataGrid
    J jinnyb

    Make the page index of the datagrid =1 in the page load event Patel Neelesh A

    ASP.NET help

  • Sending Fax in ASP.NET
    J jinnyb

    Can any pls tell me how to send fax using ASP.NET Kindly any one of u all .net guru send me some link from where i can help out my self Should i go for third party control if yes then kindly give the link from where this third party control can be downloaded Thanks Reagards JINNY Patel Neelesh A

    ASP.NET csharp asp-net help tutorial

  • Sending Fax in ASP.NET
    J jinnyb

    Hey Can any pls tell how sened fax in ASP.NET I mean can any pls send me the code to how send fax in ASP.NET Thanks Regards JINNY Patel Neelesh A

    ASP.NET csharp asp-net

  • Is This A Bug In .net (Pls help me!!!!!!!!!)
    J jinnyb

    As i have told u i have only 2 textboxand a image button.Can u pls try it ur self whats happening and by the way abt the validators ,v r not using the validators since the client wants it to be done with javascript i mean its the client requirement . Thanks Regards JINNY Patel Neelesh A

    ASP.NET help csharp javascript announcement

  • Is This A Bug In .net (Pls help me!!!!!!!!!)
    J jinnyb

    Hi I m in big trouble can any one pls help me i have 2 textboxes which i validate using javascript and the initial focus is also set using javascript.And have one imagebutton name save and in the save imgbutton click i m writing some insert and update queries .I have added to the image button the javascript in the page_load event using attributes.add("onclick","javascript:return fucntion checkdata();") Now the problem comes when i use the mouse and click on the button then the javascript fires and when i directly press enter button then the page is posted back and the javascript does not fire i mean it should validate saying textbox1 cannot b empty since i m checking for empty values But on the another page if i m doing similar validation and the same code on this page when i press enter javascript fires and the page does not post back . My project partner also tired he is also getting the same result can any one pls help me out Patel Neelesh A

    ASP.NET help csharp javascript announcement
  • Login

  • Don't have an account? Register

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