473,396 Members | 1,784 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

InputBox

Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...
Nov 18 '05 #1
5 2007
huh?
you mean as a control?

Otherwise could you give an example of what you mean, or are you trying to
say you dont know where to start?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:OW*************@TK2MSFTNGP11.phx.gbl...
Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...

Nov 18 '05 #2
Let me start again...

I used to develop in VB6, so...

I need to use something like a InputBox, as a control that I call and it
appears... In Java it is a JInputDialog (swing), for example...

I hope that I make myself understandable...

Thank's
"Curt_C [MVP]" <software_AT_darkfalz.com> escreveu na mensagem
news:uz**************@TK2MSFTNGP12.phx.gbl...
huh?
you mean as a control?

Otherwise could you give an example of what you mean, or are you trying to
say you dont know where to start?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:OW*************@TK2MSFTNGP11.phx.gbl...
Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...


Nov 18 '05 #3
ASP is serverside, you are after a CLIENTSIDE popup so you'll have to use
some clientside calls, sorry.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:%2***************@TK2MSFTNGP09.phx.gbl...
Let me start again...

I used to develop in VB6, so...

I need to use something like a InputBox, as a control that I call and it
appears... In Java it is a JInputDialog (swing), for example...

I hope that I make myself understandable...

Thank's
"Curt_C [MVP]" <software_AT_darkfalz.com> escreveu na mensagem
news:uz**************@TK2MSFTNGP12.phx.gbl...
huh?
you mean as a control?

Otherwise could you give an example of what you mean, or are you trying to say you dont know where to start?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:OW*************@TK2MSFTNGP11.phx.gbl...
Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...



Nov 18 '05 #4
An ASP.Net application has a user interface that is pure HTML. It would be a
good idea to learn something about HTML, as it in no way resembles a Desktop
application. In HTML, you have an "input type=text" (one-line textbox) and a
"textarea" (multi-line text box). The built-in server controls for these
would be:

System.Web.UI.WebControls.TextBox (can be configured as single or
multi-line)
System.Web.UI.HtmlControls.HtmlInputText (input type=text)
System.Web.UI.HtmlControls.HtmlTextArea (textarea)

These are all well-documented in the free .Net SDK, which you can download
from:

http://www.microsoft.com/downloads/d...displaylang=en

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:#7*************@TK2MSFTNGP09.phx.gbl...
Let me start again...

I used to develop in VB6, so...

I need to use something like a InputBox, as a control that I call and it
appears... In Java it is a JInputDialog (swing), for example...

I hope that I make myself understandable...

Thank's
"Curt_C [MVP]" <software_AT_darkfalz.com> escreveu na mensagem
news:uz**************@TK2MSFTNGP12.phx.gbl...
huh?
you mean as a control?

Otherwise could you give an example of what you mean, or are you trying to say you dont know where to start?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:OW*************@TK2MSFTNGP11.phx.gbl...
Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...



Nov 18 '05 #5
If you want a dialog box, you can use the JavaScript alert() or confirm()
methods. Otherwise, you'll have to pop up a new browser window, again, using
JavaScript.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:#7*************@TK2MSFTNGP09.phx.gbl...
Let me start again...

I used to develop in VB6, so...

I need to use something like a InputBox, as a control that I call and it
appears... In Java it is a JInputDialog (swing), for example...

I hope that I make myself understandable...

Thank's
"Curt_C [MVP]" <software_AT_darkfalz.com> escreveu na mensagem
news:uz**************@TK2MSFTNGP12.phx.gbl...
huh?
you mean as a control?

Otherwise could you give an example of what you mean, or are you trying to say you dont know where to start?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"André Almeida Maldonado" <de***@bol.com.br> wrote in message
news:OW*************@TK2MSFTNGP11.phx.gbl...
Hy Guys, I need to use in my aspx page an InputBox.

How can I do it (I prefer don't using JavaScript)
Thank's...



Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: news.microsoft.com | last post by:
hey all, I am having an odd problem with the InputBox in VB.NET, and it ONLY happens on one of my computers. When I try "Dim x as String = InputBox("TESTPROMPT"), I get the following error: ...
2
by: missimaths | last post by:
I was wondering if anyone knew of a way to control the text a user types into an inputbox? I want the user to type in four letters only. I can check the lenght by using the len() function in vba...
1
by: Hans Kamp | last post by:
How do I use InputBox? private void addButton_Click(object sender, System.EventArgs e) { string newName; newName = InputBox("t1", "t2", "t3"); namesListBox.Items.Add(newName); }
1
by: | last post by:
When trying to use the InputBox function I get the error "InputBox is a namespace and therefore is not a valid expression". Can anyone tell me what the problem is? Thanks.
7
by: portroe | last post by:
How can you populate an array using an inputbox(es)? thanks portroe
3
by: jcrouse | last post by:
Here is my code: Private Sub cmP1JoyUpLabelSize_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmP1JoyUpLabelSize.Click lblP1JoyUp.Width = InputBox("Enter the Width of...
8
by: about:mozilla | last post by:
I'm just a newbie in vb.net and I have this terrible problem. I want to use inputbox to get number. -User can give numbers starting from 0 -If cancel is pressed then default number stays -If text...
2
by: MLH | last post by:
HowManyMore = InputBox(MyString, "How Many More?", "3") The above line results in an InputBox displaying that has an X button in the upper right corner. And next to it, there's a ? button (for...
8
by: jpoquette | last post by:
I have recently upgraded a Visual Basic 2003 win forms application to 2005. After doing so I can no longer get my project to compile. The code is bombing on any line that uses an InputBox. I'm...
0
by: insight_find | last post by:
I would like to check the user input into an inputbox in vb.net 2003. The inputbox in my program assigns the input from the inputbox into an array called get_grades which takes in students grades...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.