Click here to Skip to main content
15,890,186 members

Comments by Kaan Öztürk (Top 8 by date)

Kaan Öztürk 18-Apr-20 5:49am View    
I've tried but didn't work :/
Kaan Öztürk 16-Feb-17 17:09pm View    
Deleted
when i called class as ClaimsExtensions x = new ClaimsExtension();
i got 'Cannot declare a variable of static type 'Claims Extensions''
what can i do about that ?
Kaan Öztürk 16-Feb-17 17:02pm View    
Deleted
I called the necessary libraries.
But i got "Extension method must be defined in a non-generic static class".
I put the same code you wrote.
What might this error be related to?
Kaan Öztürk 19-Aug-16 17:52pm View    
yes. i solved with panel.
Kaan Öztürk 19-Aug-16 17:43pm View    
checkbox is an object and textbox too. if i can check checkbox value, i can for textbox too. Anyway, I solved this problem with panel
i created a panel on html. My texboxes in there and;
int i =0;
foreach (TextBox tbUcretBilgi in Panel1.Controls.OfType<textbox>())
{
xArray[i]=tbUcretBilgi.Text;
i++
}
i can catch values with this. for example; i have 6 texboxes and i'm filling,
tb1.text: Sample1
tb2: sample2
3: sample3
4: sample4
5: null
6: null
tbUcretBilgi.text returned one value; "Sample1,Sample2,Sample3,Sample4,,,"
So,
xArray[0]="Sample1,Sample2,Sample3,Sample4,,,"
xArray[1]=null
xArray[2]=null
...
how can i fill properly? Do you have an idea ? :) thanks..