Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #11.1K
Ranked #2K
~3K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for rohitmanhas_12

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.

Member Avatar for Sarama2030
0
1K
Member Avatar for gabrielmusa

u need to use querystring or something to send values in popup page. plz show ur grid code.

Member Avatar for gabrielmusa
0
96
Member Avatar for amitshrivas

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.

Member Avatar for Mohtshm
0
64
Member Avatar for ans2007kumar

try to use this b4 if loop v=((CheckBox) o).checked; then if should be like this if(v)

Member Avatar for Mohtshm
0
97
Member Avatar for khan17

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>

Member Avatar for Mohtshm
0
119
Member Avatar for Scoobydog

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 …

Member Avatar for Scoobydog
0
298
Member Avatar for yookify

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

Member Avatar for Mohtshm
0
122
Member Avatar for Ycefire
Member Avatar for vlowe
Member Avatar for davidcrossan

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 …

Member Avatar for Mohtshm
0
155
Member Avatar for TimWerk

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.

Member Avatar for Mohtshm
0
96
Member Avatar for jellybeannn

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);

Member Avatar for jellybeannn
0
121
Member Avatar for syedfaisalhabib

u should give full method body while a quick guess GridView1.Controls(0).Controls(0).FindControl("txtCode") u should compare with it null

Member Avatar for nil
-1
85
Member Avatar for invictuspravin

The End.