Forum: ASP.NET Dec 18th, 2008 |
| Replies: 3 Views: 697 Check the MSDN website....there are too much changes..... |
Forum: ASP.NET Dec 18th, 2008 |
| Replies: 2 Views: 393 The default size of the threadpool is 25 ;)
Regards,
Richard
The Netherlands |
Forum: ASP.NET Dec 15th, 2008 |
| Replies: 6 Views: 2,226 Create a templatefield, insert the checkbox and afterwards, check with FindControl() wether the checkbox has been checked. The mastercheckbox needs to be inserted in the headerrow of the control.... |
Forum: ASP.NET Dec 15th, 2008 |
| Replies: 5 Views: 1,455 Maybe cmd.CommandType needs to be stated as text. |
Forum: ASP.NET Dec 11th, 2008 |
| Replies: 3 Views: 423 Did you try your stored procedure? Does it return the correct values?
Also the parameter method is deprecated....you should use AddWithValue("yourParameterName", yourParameterValue) |
Forum: ASP.NET Dec 11th, 2008 |
| Replies: 3 Views: 423 What's the error it's givving you?
Did you try the stored procedure in your sqlserver?
regards |
Forum: ASP.NET Dec 11th, 2008 |
| Replies: 11 Views: 2,551 from the conversiontool ;)
http://www.developerfusion.com/tools/convert/vb-to-csharp/
protected void // ERROR: Handles clauses are not supported in C# Page_Load(object sender,... |
Forum: ASP.NET Dec 10th, 2008 |
| Replies: 11 Views: 2,551 hmm... did you read my last post serkansendur? :P |
Forum: ASP.NET Dec 8th, 2008 |
| Replies: 11 Views: 2,551 I've worked it out to an example for you....
Place 1 textbox control on your page, make it multiline and insert the below stated code in the code-behind page.
Regards,
Richard
The Netherlands... |
Forum: ASP.NET Dec 8th, 2008 |
| Replies: 11 Views: 2,551 This code should manage your printing with asp.net. It's a piece of javascript;)
<script type="text/javascript">
<!--
function printTextBox_Text(elementId)
{
var textboxText =... |
Forum: ASP.NET Dec 8th, 2008 |
| Replies: 11 Views: 2,551 Hi :=)
Do you want to change the screen during typeing the text in the textbox?
You have to notice that the scripts you write (in the code-behind-page or in the page itself) are serverside... |
Forum: ASP.NET Dec 8th, 2008 |
| Replies: 11 Views: 2,551 Print? I guess you mean print on the screen?
Did you check the HttpContext.Current.Response object?
Regards, |
Forum: ASP.NET Dec 6th, 2008 |
| Replies: 13 Views: 951 Squarkman,
Please notice that you can't have nested forms in a page. Each form is a single instance. The main-form-tag is in the masterpage probably opening at the beginning-tag of the... |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 13 Views: 951 First, nothing weird about the programmingstyle. Referring to inherits="feedback, App_Web_i5ksdbwd" i assume its being a compiled application.
If 'the idiot' which you are referring to, doesn't... |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 5 Views: 565 hmmm....did you checked that if you compile your application the base-codepages remain?
That's an option in visual studio.... |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 13 Views: 951 The FORM is really there but you got to notice that this page is within a Masterpage. The FORM is declared within the Masterpage.
The current page you posted will be shown within the masterpage on... |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 11 Views: 1,188 Perhaps in your web.config file you stated "impersonate=true", therefore you need to give the proper rights to impersonated user! |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 5 Views: 565 Any code in a code-behind page which could interrupt with your form? |
Forum: ASP.NET Dec 5th, 2008 |
| Replies: 13 Views: 951 Form-method Post setted instead of Get? |
Forum: ASP.NET Dec 4th, 2008 |
| Replies: 11 Views: 1,188 ah okay.....
Nothing special about permissions. Go to the directory C:\Inetpub\wwwroot and find the directory in which the website is being saved. Rightclick on that directory and check with the... |
Forum: ASP.NET Dec 4th, 2008 |
| Replies: 3 Views: 535 You might want to put the datasource of datagridview2 into a viewstate and read it back after Page.IsPostBack.
That aint hard to manage....
' general declarations
dtMemory as datatable=new... |
Forum: ASP.NET Dec 4th, 2008 |
| Replies: 11 Views: 1,188 In which routine this error occures? Can you show us some code? I had such errors before but it always had to do something with IO operations. Are you trying to read or create an... |
Forum: ASP.NET Dec 1st, 2008 |
| Replies: 2 Views: 653 Did you manage to try it yourself? I guess the reason nobody answered lies in the fact that you didn't showed us your exact coding problem. Instead you're asking us to write your code which, in my... |
Forum: ASP.NET Dec 1st, 2008 |
| Replies: 3 Views: 1,062 I'm sorry but I don't understand your problem.
Lets assume you have the below stated example, it adds a few items to the listbox and after a selection is done, it responds the selected value to the... |