Click here to Skip to main content
16,004,806 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionBasic Authentication in Web Service Pin
kc_krishnan11-Jul-08 3:48
kc_krishnan11-Jul-08 3:48 
Questionupdate row in gridview Pin
eyeseetee11-Jul-08 2:30
eyeseetee11-Jul-08 2:30 
AnswerRe: update row in gridview Pin
Sherin Iranimose11-Jul-08 4:32
Sherin Iranimose11-Jul-08 4:32 
GeneralRe: update row in gridview Pin
eyeseetee11-Jul-08 4:41
eyeseetee11-Jul-08 4:41 
GeneralRe: update row in gridview Pin
Sherin Iranimose11-Jul-08 4:52
Sherin Iranimose11-Jul-08 4:52 
GeneralRe: update row in gridview Pin
eyeseetee11-Jul-08 5:05
eyeseetee11-Jul-08 5:05 
GeneralRe: update row in gridview Pin
Sherin Iranimose11-Jul-08 5:10
Sherin Iranimose11-Jul-08 5:10 
GeneralRe: update row in gridview Pin
Sherin Iranimose11-Jul-08 6:13
Sherin Iranimose11-Jul-08 6:13 
.netman wrote:
I'm not sure how to get the current row values e.g. another column


One way of doing this is to store the row number in the value field of the dropdown,

Eg:

in first row dropdown
Text value
1     1_1
2     2_1
3     3_1
4     4_1

1_1 will change to 1_2,2_1 to 2_2 and so on in the second dropdown

If you select 4 from 3rd row you will get 4_3 as value

So that you can retrieve the row index from this value field as follows

string val=drop.SelectedValue;
string rowNum=val.Substring(val.IndexOf("_")+1);


Hope this will help you Smile | :)

EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.

GeneralRe: update row in gridview Pin
Herman<T>.Instance16-Jul-08 1:50
Herman<T>.Instance16-Jul-08 1:50 
QuestionHttpContext.Current.Request.AnonymousID return null value Pin
shames(Sam)11-Jul-08 2:07
shames(Sam)11-Jul-08 2:07 
AnswerRe: HttpContext.Current.Request.AnonymousID return null value Pin
Paddy Boyd11-Jul-08 3:59
Paddy Boyd11-Jul-08 3:59 
GeneralRe: HttpContext.Current.Request.AnonymousID return null value Pin
shames(Sam)11-Jul-08 4:24
shames(Sam)11-Jul-08 4:24 
GeneralRe: HttpContext.Current.Request.AnonymousID return null value Pin
shames(Sam)11-Jul-08 4:24
shames(Sam)11-Jul-08 4:24 
Questionvideo converter Pin
nithydurai11-Jul-08 1:30
nithydurai11-Jul-08 1:30 
AnswerRe: video converter Pin
Ashfield11-Jul-08 1:38
Ashfield11-Jul-08 1:38 
GeneralRe: video converter Pin
nithydurai11-Jul-08 1:55
nithydurai11-Jul-08 1:55 
GeneralRe: video converter Pin
Ashfield11-Jul-08 9:38
Ashfield11-Jul-08 9:38 
QuestionTwo Dimensional Array into Dataset or datatable Pin
Bharani_Ram11-Jul-08 1:05
Bharani_Ram11-Jul-08 1:05 
AnswerRe: Two Dimensional Array into Dataset or datatable Pin
Ashfield11-Jul-08 1:32
Ashfield11-Jul-08 1:32 
AnswerRe: Two Dimensional Array into Dataset or datatable Pin
NeverHeardOfMe11-Jul-08 3:37
NeverHeardOfMe11-Jul-08 3:37 
Questionpicture in datalist Pin
strawberrysh11-Jul-08 0:53
strawberrysh11-Jul-08 0:53 
AnswerRe: picture in datalist Pin
eyeseetee11-Jul-08 1:25
eyeseetee11-Jul-08 1:25 
QuestionNeed Solution for a so simple XML Data binding!though can figure out [modified] Pin
highjo11-Jul-08 0:48
highjo11-Jul-08 0:48 
AnswerRe: Need Solution for a so simple XML Data binding!though can figure out Pin
highjo11-Jul-08 2:25
highjo11-Jul-08 2:25 
AnswerRe: Need Solution for a so simple XML Data binding!though can figure out Pin
leoinfo11-Jul-08 2:30
leoinfo11-Jul-08 2:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.