all groups > asp.net > january 2005 > threads for saturday january 29
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Request.QueryString
Posted by Sonny Sablan at 1/29/2005 10:47:28 PM
Why doesn't this work? And how do I do something similar to this. I want =
to actually build the value into a hyperlink on the receiving page.
<script runat=3Dserver>
Dim Cat As String =3D Request.QueryString("CatID")
</script>
<HTML>
<BODY>
<%Response.Write(Cat)%>
</BODY>
</HTML>... more >>
Problem running ASP.NET application
Posted by Nathan Sokalski at 1/29/2005 10:33:47 PM
I am trying to run an ASP.NET application for the first time, and I am
receiving the following when I open it in IE6.0:
Server Error in '/cis20605' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred duri... more >>
input control id and for loop
Posted by nzanella NO[at]SPAM gmail.com at 1/29/2005 9:45:15 PM
Hello,
I have a bunch of HTML input controls which I need to generate from
within a for loop. I would like them to have id attributes set to
values foo1, foo2, foo3, foo4, etc...
Unfortunately it seems this is not possible because ASP.NET won't
let me use ASP tags within the values of the i... more >>
Create a new web application in Visual Studio 2003
Posted by m.hashemian NO[at]SPAM gmail.com at 1/29/2005 7:49:19 PM
Hello,
I would create a new web application, So I created a virtual folder
and added FrontPage Server Extensions to the virtusl folder to create
a subweb. But when I try to get a new web application project from
Visual Studio .NET 2003 I receive this message: "Cannot access the Web
server becau... more >>
I am new to ASP.NET
Posted by Burton Roberts at 1/29/2005 7:47:24 PM
But I am an experienced WinForms developer. Using VS 2003, I try to open a
new project as an ASP Web Appliction and I get an error the "specified web
server is not running ASP.NET 1.1. You will be unable to run ASP.NET Web
Applications or services."
I ran setup to add the web component to m... more >>
MultiLine TextBox, how to remove vertical scrollbar?
Posted by Olav Tollefsen at 1/29/2005 7:26:13 PM
I have added a MultiLine TextBox to my aspx page:
<asp:TextBox ID="TextBox1" runat="server" BorderStyle="None" ReadOnly="True"
TextMode="MultiLine"></asp:TextBox>
Then I add two lines of text to it:
TextBox1.Text = "Line 1\r\nLine 2";
The problem is that a vertical scrollbar is display... more >>
Can you change the Gridline color?
Posted by Ken Ingram at 1/29/2005 2:29:42 PM
Is there a way to change gridline colors in an ASP.Net DataGrid? Have been
trying bordercolor properties at various levels without success.
Thanks,
Ken
... more >>
Charting options, commercial ISP
Posted by T Ralya at 1/29/2005 2:03:03 PM
I want to include charts on my site that will be hosted by a commercial ISP.
I've tried the Crystal Reports that comes in Visual Studio.NET, but
commercial ISPs either do no allow it or want $40 per month to host it as
"third party components". That is pretty steep when you are only paying $... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Why use the cache object?
Posted by vbMental at 1/29/2005 1:09:02 PM
Why not just create a class level variable in the global.asax code-behind page?... more >>
Mozilla ?
Posted by WJ at 1/29/2005 12:44:11 PM
I have an Asp.aspx page with Text Controls being hosted on a Web control
"Panel". All the textControls are haing Font 'Times New Roman' and Size=
'X-Small'. The Panel control has the following attributes:
BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid;
FONT-SIZE: 9px; TEXT-TRANSF... more >>
How can I get the value of a column in a datagrid?
Posted by Luis Esteban Valencia at 1/29/2005 11:45:10 AM
Hello. I have a datagird with textboxes on a column item template, I also
have 2 other columns that are hidden and I want to retrieve his value. But I
havent found how to do it.
Thanks very much in advance
This is the code that loops through all rows. find the textboxes controls
Private Sub... more >>
Anger, Rage, Confusion...
Posted by Roy at 1/29/2005 11:20:47 AM
Ok... Got a master/detail datagrid page with a main datagrid and a
nested one. The nested one I have contained within a user control. It's
editable. All is well. However, I noticed that the query that pulled
the data to the nested grid took some time. "No problemo, I'll just
turn it into a store... more >>
Client-side enable/disable button
Posted by M O J O at 1/29/2005 10:47:06 AM
Hi,
I have a webform with a textbox and a button.
When the textbox is empty (=""), I want the button to be disabled. When
the user enters text in the textbox, the button must be enabled.
Is this possible?
(please if possible, show me the code)
Thanks!!!
M O J O... more >>
Sporadic Error: Cannot find table 0
Posted by POL8985 at 1/29/2005 8:40:35 AM
The application is developed in ASP.Net with a SQL Server database.
Essentially, the application uses a single shared Connection object for
all users logged into the system. The connection object is
opened/closed for each transaction.
The error - System.IndexOutOfRangeException: Cannot find... more >>
How to debug? "No Symbols Have Been Loaded"
Posted by asdf at 1/29/2005 7:44:57 AM
Hello,
I was enjoying working in VS for half a year without any problems and
now I cannot debug anymore. Without any really reason my Studio tells me
that the page that I want to debug has - No symbols loaded. I use VS
v1.7.3088 and .NET framework v1.1.4322 SP1.
I work with ASP.NET using... more >>
Design Question
Posted by Sahridhayan at 1/29/2005 7:41:02 AM
Hi
I have slightly different requirement, i have a product to be developed in
asp.net.
i want to create all the modules of the product in separate pluggable pieces
of DLLs.
to that intially i separate the modules as folders... now...
So i want my deloyment structure like this..
my in... more >>
Noise words in full text search....
Posted by macyp at 1/29/2005 7:18:14 AM
I am developing a search page. If the users enter, words like "and",
"an" etc, it gives an error. I read something abt noise words. I want
to display a friendly error message to the users if they enter noise
words.
I am storing all the noise words in an array, and string comparing the
keyword t... more >>
Loading a asp.net user control from Javascript
Posted by Madhuri Mittal at 1/29/2005 7:09:02 AM
Hello,
Can I load a asp.net usercontrol from Javascript code? I know you can do it
dynamically through C# or vb.net code from server side. But can we do it
without going to the server just via client side javascript code?
Madhuri Mittal... more >>
email validation against a SMTP server?
Posted by AFN at 1/29/2005 5:21:44 AM
Has anyone written any code to verify an email address against an SMTP
server? I hear you can see if the address is an alias (catchall) versus a
real account. I know you can telnet on port 25 and do a VRFY command, but
I think most servers now disable this for security. So is it worthwhile
... more >>
Datagrid binding
Posted by thomson at 1/29/2005 3:43:08 AM
Hi all,
Iam binding a datatable with the data grid, In the data table
there is a column as Posted_flag char(1), which can have value either N
or Y .
My issue is that in my grid there is a an
item template with a checkbox control, depending upon the value, Y or N
it should show checked or unche... more >>
javascritp problem... handling special char.
Posted by Asha at 1/29/2005 2:47:03 AM
hello...
i've got a javascript problem...
my url is created dynamically something like
DeptDetail2.aspx?SubOrgNm=" + SubOrgNm + "&OrgId=" + OrgId + "&SubOrgId=" +
SubOrgId
my problem is that when e.g. suborgnm have the special char of "&" it does
not save this value.. e.g my value woul... more >>
Global subroutines
Posted by fd123456 NO[at]SPAM hotmail.com at 1/29/2005 12:49:52 AM
Hi Tom,
I have just read your previous message about not having VS. I have
never tried compiling anything without it, so I don't know the
particular pitfalls you might encounter.
Global.asax is not a code-behind file. In VS, there is another file,
called Global.asax.vb, which contains (comm... more >>
|