Stored procedure wont insert Fields, RadioButtonLists and CheckBox
Wed, 24 Feb 2010 17:34:01 -0800
Hello Community
I have a CheckBox and a RadioButtonList and fields on an aspx web page form.
I pass the fields on the form to a method that creates the parameters and
executes a stored procedure and the stored procedure is supposed to insert
this information as a row into a table.
For some reason the ...
|
Access is denied
Wed, 24 Feb 2010 12:46:09 -0800
Hi,
I got an "Access is denied" problem.
I pulled in a web app from Source Safe. Rebuild the solution. Got error:
â??Could not load file or assembly ProjectA. â?¦ Access is deniedâ?. ProjectA is a
project, whose build is ok.
Then I removed this project. And rebuild the solution. Got error: â??Access to ...
|
Accessing Datareader Columns using column names
Wed, 24 Feb 2010 09:32:01 -0800
Hi,
I recently wrote some code and used column names to access values in the
datareader, like ....
string _firstName = myDr["FirstName"].ToString();
My supervisor instructed me to use index instead, like...
string _firstName = myDr.getString(0);
I wouldn't mind using index but whats the big deal? I ...
|
FileUpload control - page refresh on submit
Wed, 24 Feb 2010 00:05:14 -0600
After choosing a file, when the user finally submits it, the page refreshs after upload.
I have a control that lets users upload an image. It works fine, but the page refreshs
after the upload completes. I'd like the page not to refresh so I can then just put
the image into a <div> in an aesthetic way.
I ...
|
Setting the value of a Master page's control's property using a property of the Master page
Tue, 23 Feb 2010 18:24:25 -0500
I have a Master page that contains a custom property, defined as follows:
Public Property SelectedNavigationID() As String
Get
Return Me.leftnavNavigation.SelectedNavigationID
End Get
Set(ByVal value As String)
Me.leftnavNavigation.SelectedNavigationID = value
End Set
End Property
As you can ...
|
IIS 7 , 2008 R2 and SQL 2008
Tue, 23 Feb 2010 22:01:32 +0100
Hi all,
sorry for my bad English . I have questation about impersonatilion . I have
asp.net which remotely connect to SQL 2008 . I want use the credentional
from client which open asp.net page , which connect to sql server:-) . But
after I try it , the login to the sql serveris anonymous , why ????
thanx
ma ...
|
Problem: Too many response code 404, how to detect them?
Tue, 23 Feb 2010 19:37:20 +0100
hi
asp.net 3.5
Webalizer reports response code 404 about 939 times, that is about 40% of
the requests. But I have problem finding these 404 errors myself. So far I
haven't come accross them myself... So I was looking for a way to detect
them. You know about a link which I could use to validate my site fo ...
|
|
|
How to share the connection string?
Tue, 23 Feb 2010 14:40:33 +0100
Hello,
I have one solution containing two c# projects: one project builds a DLL
that is used by the main project (the other project). In the web.config of
the main project I added (in the appSettings section) the connectionString
parameter, that I read to load my connection string (to SQL Server 2005).
H ...
|
Extra protection for ASPX pages
Tue, 23 Feb 2010 06:26:16 +0100
When hackers infiltrate a web server they will ussually try to add XSS
script code to the admin ASPX pages to try to take over the administrator's
machine. I was thinking: why doesn't Microsoft add a hash of the ASPX code
to the assembly of the web application to prevent tampering with the ASPX
page?
Lega ...
|
What is the fastest sustainable web service response time?
Mon, 22 Feb 2010 22:31:15 -0600
Is it possible for a very fast web service to consistently
provide an average 500 millisecond response time?
Is the internet itself too slow making this goal completely
infeasible using current technology?
...
|