No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Re: Actually it seems there is a problem in ur storprocedure plz share ur store procedure for quick reply i think u ve not declare variable in ur storeprocedure. | |
Re: u need to use querystring or something to send values in popup page. plz show ur grid code. | |
Re: it is saying that column type for 3 column mismatch because the table from which you are selecting collating type is different for this right click on table and check their collating type as well. | |
Re: try to use this b4 if loop v=((CheckBox) o).checked; then if should be like this if(v) | |
Re: u can do this as following code should be used in codebehind page load method or any u should know better from where u want the desired out put should be saved. <code> System.Text.StringBuilder sb = new StringBuilder(); TextWriter tWriter=new StringWriter(sb); HtmlTextWriter htmlWriter=new HtmlTextWriter(tWriter); this.Render(htmlWriter); string outputResponseForDb=sb.ToString(); </code> | |
Re: as u r saying that ur javascript is stopping postback it is good now get the click id from child grid and sent it to codebehind by page method (good option) or Ajax then get the details in the form of string and then do some stuff like split if … | |
Re: u should make use of sql by this select (name + CAST( count (name) AS varchar(10)) ) as NameCount from agent group by name and also remember to make change in binding expression for testfieldvalue | |
Re: airshow seems very clean and eloborative. | |
Re: it is very simple i think u need to work with ur query like this ("Select customerID, firstname, lastname, address, postcode, phone, email from Customers where customerID in (select customerID from bookings ) ") And try to avoid join use in query u could also put some condition in subquery … | |
Re: U should over ride datagrid_selectedindexchanged method in which get selectrow by something like following: DataGrid.Rows[e.selectedindex].Cells[n].Text; where n could be ur column number in a row as u know which column value u want to retrieve. | |
Re: it is quite simple u can do this in folllowing manner: DateTime start=DateTime start = DateTime.Parse(start_str); now u want only to set day to validday u should make a separate method like this private DateTime setDay(int DayToSet,DateTime DateToBeSet) { return new DateTime(DateToBeSet.Year,DateToBeSet.Month,DayToSet); } then u would call: start=setDay(validday,start); | |
Re: u should give full method body while a quick guess GridView1.Controls(0).Controls(0).FindControl("txtCode") u should compare with it null | |
Re: y dont u google for the connection string for mysql |
The End.