Can u pls give some more details or article that can help me out pls... Patel Neelesh A
jinnyb
Posts
-
Can any one pls help me on web farm -
Can any one pls help me on web farmHi 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
-
Securig assembly in GACI 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
-
Securing an Assemebly in GacI 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
-
Multicolumn sortinghey can any one pls tell me how to sort mutiple cloumns in the datagrid control in .asp.net Patel Neelesh A
-
Programmatically Creating DatagridI 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
-
Custom Web ControlHey 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
-
Custom Web ControlHi 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
-
Webcobntrol Library to make datagridHey 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
-
Dynamically Creating a datagridHey 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
-
Library Not Registered ErrorHey 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
-
Dynamically Creating a datagridPls 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
-
DatGrid Paging Event not firinghey 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
-
What is indexing in asp.netCan 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
-
radiobutton forecolorDear 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
-
DataGridMake the page index of the datagrid =1 in the page load event Patel Neelesh A
-
Sending Fax in ASP.NETCan 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
-
Sending Fax in ASP.NET -
Is This A Bug In .net (Pls help me!!!!!!!!!)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
-
Is This A Bug In .net (Pls help me!!!!!!!!!)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