Click here to Skip to main content
15,898,924 members
Home / Discussions / C#
   

C#

 
QuestionHow to Move the fies from Application Folder To Sharepoint Server Folder in C# Pin
ChandrakanthGaddam1-Feb-09 18:44
ChandrakanthGaddam1-Feb-09 18:44 
QuestionCalling Server Side code from javascript Pin
Atul Shriram rane1-Feb-09 18:29
Atul Shriram rane1-Feb-09 18:29 
AnswerRe: Calling Server Side code from javascript Pin
Christian Graus1-Feb-09 20:36
protectorChristian Graus1-Feb-09 20:36 
QuestionHow the web page text can be changed on the fly? Pin
svt gdwl1-Feb-09 17:59
svt gdwl1-Feb-09 17:59 
Question[Message Deleted] Pin
priyareguri1-Feb-09 13:44
priyareguri1-Feb-09 13:44 
AnswerRe: how to rotate shapes with mouse cursors... Pin
Dragonfly_Lee1-Feb-09 18:40
Dragonfly_Lee1-Feb-09 18:40 
QuestionDataGridView LinkColumn Pin
Illegal Operation1-Feb-09 13:40
Illegal Operation1-Feb-09 13:40 
AnswerRe: DataGridView LinkColumn Pin
tech6032-Feb-09 6:23
tech6032-Feb-09 6:23 
If you haven't done so already you would want to set your gridview to not auto generate the columns.

Example:
<asp:gridview id="GridView1" runat="server" autogeneratecolumns="False" xmlns:asp="#unknown">

Within the GridView declaration, declare a <columns> element.

Within the Columns element, define the <asp:hyperlinkfield> you intend to display, specifying at the very least the required DataTextField and DataNavigateUrlFields properties.

Optionally set the HyperLinkField control's other properties, such as the HeaderText and DataNavigateUrlFormatString. For syntax, see GridView Control Syntax.

Example:
<columns><asp:hyperlinkfield headertext="User" datatextfield="UserName" datanavigateurlfields="UserName" datanavigateurlformatstring="hostmysite.com">
Also you can check out the msdn which provides a lot of helpful information for the gridview. http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.aspx[^]

Matthew Vass
QA Analyst
mvass@hostmysite.com
http://www.hostmysite.com?utm_source=bb[^]
AnswerRe: DataGridView LinkColumn Pin
Wendelius2-Feb-09 6:39
mentorWendelius2-Feb-09 6:39 
QuestionFile Watcher Pin
Bob Pawley1-Feb-09 12:27
Bob Pawley1-Feb-09 12:27 
AnswerRe: File Watcher Pin
Alan N1-Feb-09 12:42
Alan N1-Feb-09 12:42 
AnswerRe: File Watcher Pin
Colin Angus Mackay1-Feb-09 12:47
Colin Angus Mackay1-Feb-09 12:47 
GeneralRe: File Watcher Pin
Bob Pawley1-Feb-09 13:14
Bob Pawley1-Feb-09 13:14 
GeneralRe: File Watcher Pin
Colin Angus Mackay1-Feb-09 13:27
Colin Angus Mackay1-Feb-09 13:27 
GeneralRe: File Watcher Pin
Bob Pawley1-Feb-09 13:41
Bob Pawley1-Feb-09 13:41 
GeneralRe: File Watcher Pin
Colin Angus Mackay1-Feb-09 13:49
Colin Angus Mackay1-Feb-09 13:49 
AnswerRe: File Watcher Pin
Colin Angus Mackay1-Feb-09 13:52
Colin Angus Mackay1-Feb-09 13:52 
Questionfilestream : read with and lock-unlock problem [modified] Pin
JossGP1-Feb-09 11:54
JossGP1-Feb-09 11:54 
AnswerRe: filestream : read with and lock-unlock problem Pin
JossGP1-Feb-09 11:57
JossGP1-Feb-09 11:57 
AnswerRe: filestream : read with and lock-unlock problem Pin
Colin Angus Mackay1-Feb-09 12:49
Colin Angus Mackay1-Feb-09 12:49 
GeneralRe: filestream : read with and lock-unlock problem Pin
JossGP1-Feb-09 13:27
JossGP1-Feb-09 13:27 
GeneralRe: filestream : read with and lock-unlock problem Pin
Colin Angus Mackay1-Feb-09 13:28
Colin Angus Mackay1-Feb-09 13:28 
Generalmethod overloading.constructor overl, delegates. Pin
Ali_1001-Feb-09 8:10
Ali_1001-Feb-09 8:10 
GeneralRe: method overloading.constructor overl, delegates. Pin
Colin Angus Mackay1-Feb-09 12:54
Colin Angus Mackay1-Feb-09 12:54 
GeneralRe: method overloading.constructor overl, delegates. Pin
Dragonfly_Lee1-Feb-09 18:47
Dragonfly_Lee1-Feb-09 18:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.