Click here to Skip to main content
15,881,281 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsetup hyperlink Pin
sc steinhayse8-Aug-12 8:01
sc steinhayse8-Aug-12 8:01 
AnswerRe: setup hyperlink Pin
R. Giskard Reventlov8-Aug-12 8:55
R. Giskard Reventlov8-Aug-12 8:55 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 9:31
sc steinhayse8-Aug-12 9:31 
GeneralRe: setup hyperlink Pin
R. Giskard Reventlov8-Aug-12 9:57
R. Giskard Reventlov8-Aug-12 9:57 
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 10:35
professionaljkirkerx8-Aug-12 10:35 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 11:05
sc steinhayse8-Aug-12 11:05 
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 12:14
professionaljkirkerx8-Aug-12 12:14 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 15:36
sc steinhayse8-Aug-12 15:36 
I want to mention the following:
1. The page where you enter the data is too small. There is not enough room on the webpage to enter the data. The user wants to be able to enter 8,000 to 20,000 bytes of data if they need to. They want to be able to adjust the new texabox area the way they want to. The user wants to be able to type the data in paragraph format. The user requirement is to have that one textbox on one webpage for their convenience. This is a requirement that can not be changed.
2. I also wanted to mention the following is the code I have to work with right now:
TextBoxCode.TextChanged += new EventHandler(TextBoxCode_TextChanged);   

void TextBoxcode_TextChanged(object sender, EventArgs e)
        {

            if (TextBoxCode.Text == "")
            {
                ButtonPending.Visible = true;
                            }
            else
            {
                ButtonPending.Visible = false;

                if (TextBoxCode.Text == "999")
                
                    {
                     //Would like hyerlink here instead of response.direct
                     // since do not need to go to server here
                        Response.Redirect("~/Reason.aspx");
                      
                    }
               
        }


Can you make suggestions how to accomplish this goal, by hopefully using a hyperlink?
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 18:50
professionaljkirkerx8-Aug-12 18:50 
GeneralRe: setup hyperlink Pin
sc steinhayse9-Aug-12 3:51
sc steinhayse9-Aug-12 3:51 
GeneralRe: setup hyperlink Pin
jkirkerx9-Aug-12 6:40
professionaljkirkerx9-Aug-12 6:40 
GeneralOffice Tools in WebApplications Pin
indian1438-Aug-12 7:51
indian1438-Aug-12 7:51 
GeneralRe: Office Tools in WebApplications Pin
Wes Aday8-Aug-12 10:36
professionalWes Aday8-Aug-12 10:36 
Questioncode not reaching new web page Pin
dcof8-Aug-12 6:54
dcof8-Aug-12 6:54 
AnswerRe: code not reaching new web page Pin
R. Giskard Reventlov8-Aug-12 7:33
R. Giskard Reventlov8-Aug-12 7:33 
QuestionImage Extraction From Email Pin
Member 79838848-Aug-12 3:35
Member 79838848-Aug-12 3:35 
AnswerRe: Image Extraction From Email Pin
David Mujica8-Aug-12 5:00
David Mujica8-Aug-12 5:00 
GeneralUnable to Maintain griedview scroll position in to the Internet Explorer Print Preview Window Pin
debasishchowdhury19828-Aug-12 1:24
debasishchowdhury19828-Aug-12 1:24 
GeneralHow to bind datatable retrived from databse to Telerik Radtreeview/ radtreeList Pin
Agentdufffr7-Aug-12 19:51
Agentdufffr7-Aug-12 19:51 
AnswerRe: How to bind datatable retrived from databse to Telerik Radtreeview/ radtreeList Pin
Sandeep Mewara8-Aug-12 5:22
mveSandeep Mewara8-Aug-12 5:22 
QuestionMultlingual website in asp.net Pin
delhiegle7-Aug-12 19:31
delhiegle7-Aug-12 19:31 
AnswerRe: Multlingual website in asp.net Pin
Sandeep Mewara8-Aug-12 5:17
mveSandeep Mewara8-Aug-12 5:17 
GeneralRe: Multlingual website in asp.net Pin
delhiegle11-Aug-12 9:43
delhiegle11-Aug-12 9:43 
GeneralRe: Multlingual website in asp.net Pin
RichardGrimmer5-Sep-12 4:43
RichardGrimmer5-Sep-12 4:43 
QuestionConsuming WCF Service in ASP.Net application Pin
indian1437-Aug-12 13:27
indian1437-Aug-12 13:27 

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.