Click here to Skip to main content
15,879,535 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionis it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
MS Lee17-Dec-08 4:23
MS Lee17-Dec-08 4:23 
AnswerRe: is it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
Paul Conrad17-Dec-08 5:33
professionalPaul Conrad17-Dec-08 5:33 
AnswerRe: is it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
Christian Graus17-Dec-08 8:57
protectorChristian Graus17-Dec-08 8:57 
GeneralRe: is it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
MS Lee17-Dec-08 17:42
MS Lee17-Dec-08 17:42 
GeneralRe: is it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
N a v a n e e t h17-Dec-08 17:56
N a v a n e e t h17-Dec-08 17:56 
GeneralRe: is it possible to import a dll file which was developed my vb.net in to a asp.net application? Pin
MS Lee17-Dec-08 18:01
MS Lee17-Dec-08 18:01 
QuestionGridView HeaderText Horizontaly Pin
EBeylo17-Dec-08 3:06
EBeylo17-Dec-08 3:06 
AnswerRe: GridView HeaderText Horizontaly Pin
Abhijit Jana17-Dec-08 3:18
professionalAbhijit Jana17-Dec-08 3:18 
GeneralRe: GridView HeaderText Horizontaly Pin
EBeylo17-Dec-08 3:28
EBeylo17-Dec-08 3:28 
GeneralRe: GridView HeaderText Horizontaly Pin
Abhijit Jana17-Dec-08 3:36
professionalAbhijit Jana17-Dec-08 3:36 
GeneralRe: GridView HeaderText Horizontaly Pin
EBeylo17-Dec-08 3:48
EBeylo17-Dec-08 3:48 
QuestionGridView event handler not working Pin
compninja2517-Dec-08 2:59
compninja2517-Dec-08 2:59 
Hi all,

I'm still fighting with getting multiple lines in a dynamic gridview. Searching around led me to think that if I can change the data during the rowcreated handler this just might work.


gv2.RowCreated += new GridViewRowEventHandler(gv2_RowCreated);        
        gv2.DataBind();

protected void gv2_RowCreated(object sender, GridViewRowEventArgs e)
    {
        for (int i = 0; i < 5; i++)
        {
            e.Row.Cells[i].Text.Replace(Environment.NewLine, "<br />");
        }
    }


Whenever I run the debugger, the new event handler line adds the handler, but never runs through the block of code. I'd imagine that during the DataBind, the rows are being created, so why isn't the system seeing this event?

"You're damned if you do, and you're damned if you dont" - Bart Simpson

AnswerRe: GridView event handler not working Pin
Abhijit Jana17-Dec-08 3:13
professionalAbhijit Jana17-Dec-08 3:13 
GeneralRe: GridView event handler not working Pin
compninja2517-Dec-08 3:38
compninja2517-Dec-08 3:38 
GeneralRe: GridView event handler not working [modified] Pin
compninja2517-Dec-08 3:45
compninja2517-Dec-08 3:45 
GeneralRe: GridView event handler not working Pin
compninja2517-Dec-08 4:12
compninja2517-Dec-08 4:12 
AnswerRe: GridView event handler not working Pin
Brij17-Dec-08 3:14
mentorBrij17-Dec-08 3:14 
GeneralRe: GridView event handler not working Pin
compninja2517-Dec-08 3:37
compninja2517-Dec-08 3:37 
GeneralRe: GridView event handler not working Pin
Brij17-Dec-08 3:50
mentorBrij17-Dec-08 3:50 
GeneralRe: GridView event handler not working Pin
Abhijit Jana17-Dec-08 3:38
professionalAbhijit Jana17-Dec-08 3:38 
GeneralRe: GridView event handler not working Pin
Brij17-Dec-08 3:48
mentorBrij17-Dec-08 3:48 
AnswerRe: GridView event handler not working Pin
compninja2517-Dec-08 7:09
compninja2517-Dec-08 7:09 
GeneralRe: GridView event handler not working Pin
Abhijit Jana17-Dec-08 17:42
professionalAbhijit Jana17-Dec-08 17:42 
QuestionASP.NET Web Application's dll reference in Web Sites projects Pin
ZiaMehdi17-Dec-08 2:35
ZiaMehdi17-Dec-08 2:35 
AnswerRe: ASP.NET Web Application's dll reference in Web Sites projects Pin
Abhijit Jana17-Dec-08 3:47
professionalAbhijit Jana17-Dec-08 3: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.