Hi,
I am a .NET developer. I have no experience on Python. Which platform is more scalable? Which platform is more suitable for large-size high-traffic web sites? If you have any experience about scalability on these platforms, please inform us.
Thank you.
...
I have an issue with a pager control i am building. My code is the following
protected override void CreateChildControls()
{
base.CreateChildControls();
pnl = new Panel { ID = "NewsPager", CssClass = "NewsPager" };
Controls.Add(ddl);
AddPagerControls();
}
AddPagerControls adds a bunch of LinkButtons that use the same event h...
i need your help give css property into gridview in the header of columns' Css. Up or Down image?
string AscCSS = "sortascheader";
string DescCSS = "sortdescheader";
foreach (DataControlField field in gvProducts.Columns)
{
for (int i = 0; i < gvProducts.Columns.Count; i++)
{
if (...
Hi
I've an asp page with a DevExpress AspRadioButtonList. On Page_Load the SelectedIndex is set, based on a property variable. On ClientSideEvents SelectedIndexChange some info is changed. All works as it's suppoused to up to this point.
In firefox, if a reload it's triggered, selected radio button circles throught all values. Any one...
I'm trying to do office 2003 interop using C# ASP.NET on a server running Windows 2003 64 bit (I'm running IIS in 32bit mode though) and getting error messages like:
The machine-default permission settings do not grant Local Activation permission for the COM Server application with CLSID
{00024500-0000-0000-C000-000000000046} to the us...
Hi,
i have written a http handler for uploading multiple files from flex application.
In explorer it works properly, but in other browsers i have problem obiously with forms authentication..
this is log of the request from Firefox, Opera, etc..:
/admin/UploadProductImage.axd?User=a6s55d4as6&Id=33
status: 302 (Found)
/admin/log...
Our (asp.net) system is part of a larger system. It is launched via this larger system from javascript that does a window.open call to open a new window.
(aside, authentication data etc is passed into our system via an encrypted query string parameter)
When testing with IE7 (unfortunately the organization has standardized on this) the...
I am writing a WCF Service which would allow access to operations based on AD user group. If the logged in user is part of groupA, allow him to do operationA, but not operationB and so on and so forth. Now for this I have to pass NetworkCredentials to the service like
factory.Credentials.Windows.AllowedImpersonationLevel =
...
I am building an ASP.NET website which will collect data from a user and submit it to a 3rd party webservice. The webservice is somewhat unreliable and for this reason there is a backup service.
If a call to the primary service fails (timeout or some other error) then I need to flip a bit in a static class which will trip the system to ...
I know how to make the intellisense work in a .js file using this "/// <reference path="jquery-1.3.2-vsdoc.js" />" but how to make it work in an aspx file.
I writing some jquery code in the page html itself and want to make the intellisense work there
...
Hello,
is there a way to delay the "jump" to an anchor tag on page load using ASP.NET and jQuery?
Actual problem is that i have a jQuery-function that on page load hides all divs of a certain class. Now, when i have an anchor tag in the middle of the page, and link to that anchor, when the page loads the "anchor jump" happens before jQ...
Hello, I have run into a problem trying to modify a form I myself have not built.
The form has a asp:input field for a date value, wich is checked by a requiredFieldVal and a rangeVal. The rangeVal has type set to "date" and min value 2000-01-01: max value 3000-01-01
Now to the problem, I'm trying to add so that the user also can input...
I am trying to insert a record. This code worked but has stopped working I don't know why. Here is the code:
using (SAASDataContext dc = new SAASDataContext())
{
tblAssessment a2 = new tblAssessment();
a2.AssessmentCentreId = centreId;
a2.Attemp...
I want to insert a textbox control into a gridview,so that I can enter a value into the textbox at runtime?
...
I am about to gone mad
why? why? why?
protected void Page_Load(object sender, EventArgs e)
{
AttachedPartnersViewState vs = ViewState[SessionVariables.Company_AttachedPartnersViewState] as AttachedPartnersViewState;
protected override void OnUnload(EventArgs e)
{
ViewState[SessionVariables.Company_AttachedPartnersViewSt...
I am currently writing unit tests for an application near completion (before management looks at it and turns it inside out). I am testing the business layer and a method is set to return a datatable of all "GroupID"s, which are simply an integer to represent the group that a user belongs to.
I'm assuming the best way to assert on this...
I have a page that displays a gridview with some checkboxes and drop-down lists to filter the results. However, the trip to the database to get the data that the gridview binds to can be lengthy.
I tried methods from various examples of in-process "Updating..." messages but they all seem to be for postbacks. Things like animated "Proc...
I would like to have the session state in a separate process for my app, but I would also like to have some code run whenever a user's session is over. (changing a status string that indicates whether they are online or not and decrementing the online users count.)
If my session state is InProc in the web config, I can use the Session_...
I am in the situation of working with large amount of records in a grid. Instead of, binding all records into the gird. why we should not bind set of records which are belongs to 5th page.
...
Hi,
I have the following situation:
Server Control A:
<my:ServerCtrlA ...>
<Content>
<my:ServerCtrlB .../>
</Content>
</my:ServerCtrlA>
The <Content> property of ServerControlA is an ITemplate on which I call the InstantiateIn(...) method.
ServerCtrlB is another control that may possibly be placed inside this Content pr...