0
votes
Can the PostbackUrl be set for a GridView CommandField?
Use a HyperLinkField column in your GridView:
<asp:HyperLinkField AccessibleHeaderText="Edit" DataNavigateUrlFields="ActivityId" DataNavigateUrlFormatString="AcitivtyEdit.aspx?id …
1
vote
Can the PostbackUrl be set for a GridView CommandField?
Leppie is right. The GridView has no PostbackUrl property. However, you can do what you want by using a standard control, which has a PostbackUrl property.
<asp:TemplateField Ac …
1
vote
Server.Transfer vs. Context.RewritePath
To avoid the exception thrown by Server.Transfer, you can use Server.Execute. Both Server.Transfer and Server.Execute DO NOT issue an 302 HTTP message. Only Response.Redirect issues this header and …
3
votes
Why are commas inserted when innerHTML is copied after Postback?
I don't have time to read your entire code, but please pay attention to the following: you may be copying a HTML chunk and creating a clone of it in your code. This way, you actually get two textbo …
1
vote
ASP.NET based Workflow Engine
Building a custom workflow engine is not trivial, although it may seem simple at first. We've tried that. It depends a lot on the complexity of the logic you need it to cover.
Given the cur …
0
votes
How do I associate the Enter key with a button on an aspx page?
Page.Form.DefaultButton - msdn link here
…
0
votes
ASP.NET based Workflow Engine
While browsing the web for some workflow & BPM resources, I found this project: NetBPM. Unfortunatelly, the project seems to be stopped.
…
0
votes
Efficiency of persistence methods for large asp.net cache store
We have built an application that uses Caching for storing all resources. The application is multi-language, so for each label in the application we have at least three translations. We load a (Lab …
4
votes
pre compile website in Setup & Deployment
I see you tried the standard Web Setup project from VS.
Scott Gu's blog post takes you to this page:
…
2
votes
Uses for MachineKey in ASP.NET
MachineKey is used for:
ViewState encryption and validation
Forms Authentication uses this key for signing the authentication ticket
Having a Web App installed …
-2
votes
What is the easiest way to get 4(or any count) random unique ids from an id collection with c#?
Random random = new Random();
long firstOne = idCollection[random.Next(idCollection.Count)];
long secondOne = idCollection[random.NExt(idCollection.Count)];
...and so on …
2
votes
How do you bind a gridview column to a subclass value?
The data binding mechanism behind ASP.NET GridView supports only one level bindings. (as opposed to its WinForms Binding counterpart that supports multi-level in the case of binding to a DataSet / …
