all groups > asp.net > march 2005 > threads for wednesday march 9
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
javascript buton click
Posted by TJS at 3/9/2005 11:57:53 PM
asp:ImageButton only produces desired effect if dbl-clicked
how can I apply javascript to convert single click into dbl-click ?
... more >>
#Region equiv. for aspx or add-in creation possible?
Posted by Ken Dopierala Jr. at 3/9/2005 11:16:16 PM
Hi,
I'm creating some large custom controls and I'm getting annoyed by all the
markup they create. Is there a #Region equivilant for HTML in .aspx pages
to expand and collapse it? If not, is there one in VS.Net 2005? If there
is, is there a way in my ControlBuilder to put these tags outside... more >>
get documents outside the webstructure
Posted by JB at 3/9/2005 10:39:34 PM
Hello,
I want to display a list of word-documents on our intranet. I know how
to do that with the filesystem-classes when the documents are inside the
webstructure.
For many reasons it is better to keep the documents out of the
web-structure. So can somebody explain to me or point me to ... more >>
Problem Binding Data to DROP DOWN LIST CONTROL
Posted by Vigneshwar Pilli via DotNetMonster.com at 3/9/2005 10:31:00 PM
string connectionString1 = "server=(local); user=sa;password=sa;
database=sonic";
System.Data.SqlClient.SqlConnection dbConnection1 = new
System.Data.SqlClient.SqlConnection(connectionString1);
System.Data.SqlClient.SqlCommand dbCommand1 = new
System.Data.SqlClient.SqlCommand();
... more >>
Label Alignment
Posted by Joko at 3/9/2005 8:29:19 PM
Hi i want to ask how to make the label text align to the
right instead to the left
thax... more >>
redirect default page
Posted by news at 3/9/2005 8:25:35 PM
what is the easiest way to redirect the Default.htm (or asp) page to another
page? Please show me example as I'm learning how to program asp.net. Thanks.
... more >>
fixing multi line text before saving to dbase
Posted by Daves at 3/9/2005 7:56:11 PM
I am saving to database a result from multi-line textbox. The database of
course wants \x escape codes, not the invisible ones. Is there any easy -
one line code - way to do this (c#) eg by String.Format() ?
... more >>
Link to PDF File in DataGrid
Posted by Bazza Formez at 3/9/2005 7:52:14 PM
Hi there,
This must be simple I know...
I have an ASP.NET web page with a datagrid on it.
One of the template columns is a hyperlink that has a URL point to a PDF
document...
When the user clicks on that button.... the browser displays the pdf
document (using Adobe somehow I guess). Al... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
where in page cycle to place code?
Posted by Daves at 3/9/2005 7:23:43 PM
in my masterpage codebehind I want to do a final check after the content
page codebehind has been run. Where in the page cycle (in what event) could
I place this code?
... more >>
Post from one url to another
Posted by Micke Palm at 3/9/2005 6:33:05 PM
Hello!
I get some data in a domain from a other domain with request.form in aspnet.
The scenenario I want to do is to post it back like a form.
Can I do that in ASPNET?
I've tried this without any success.
lnkbTest.Attributes.Add("onClick",
"javascript:document.forms[0].action='http://... more >>
Server-side code & javascript
Posted by Roshawn Dawson at 3/9/2005 5:54:16 PM
Hi,
Is it possible to perform a server-side operation, and return the
results of that operation to the client via Javascript without a
postback to the server?
Forgive me if I sound stupid but I'm a newbie.
Thanks,
Roshawn... more >>
Mantain ViewState
Posted by Jonathan at 3/9/2005 5:42:27 PM
Hello,
I'm writed a WebCustomControl but I can't mantain the viewstate this is the
code of my WebCustomContol:
public class WebCustomControl1 : System.Web.UI.WebControls.WebControl,
IPostBackEventHandler
{
public event EventHandler DoPostBack;
protected override void Render(HtmlText... more >>
adding controls on client side
Posted by Oleg Ogurok at 3/9/2005 5:30:20 PM
Hi all,
I'd like to create a DataGrid-like control that lets a user add a row with a
javscript (DOM), without a postback. Then later a user can submit the whole
form back to the server.
As far as I know, ASP.NET doesn't support this kind of behavior. I think
during the postback, newly added... more >>
application design
Posted by bill at 3/9/2005 5:27:29 PM
I am migrating a VB6 webclass (IIS application) to a dotNet webforms
project.
There are dozens of designers, class modules, and code modules in this
webclass project, which I will move into VB.NET or CS.NET classes to be
referenced from the web forms project.
I am trying to decide whether t... more >>
How do I make a DLL that all web sites can use (like an old COM object)?
Posted by Alan Silver at 3/9/2005 5:22:30 PM
Hello,
In Classic ASP, you could whip up a DLL in VC++, VB, etc and register it
on the server somewhere (anywhere actually). Once registered, any ASP in
any web site could use it by doing ...
Set objMyObj = Server.CreateObject("MyDLL.MyClass")
How do I do a similar thing in ASP.NET?
... more >>
Why do people use an @ sign before a string?
Posted by Alan Silver at 3/9/2005 5:01:05 PM
Hello,
I have noticed in a few bits of code that people sometimes do things
like...
SomeFunction(@"a text string");
What is the purpose of the @ sign? I have seen it most when passing
connection strings (admittedly in example code, as connection strings
would be better stored elsewher... more >>
Tips: find Asp.NET Version
Posted by Jignesh Desai at 3/9/2005 4:56:08 PM
Version vs = Environment.Version;
Response.Write(vs.ToString());
Regards,
Jignesh Desai
www.dotnetjini.com
... more >>
Calendar...
Posted by David Lozzi at 3/9/2005 4:40:11 PM
Hi,
Thanks for your help. I'm using the calendar control for the first time. I'm
squaring away the formatting and everything, but I have an interesting
scenario, not sure if its possible:
I'd like the calendar to appear only when asked for. I.e., the user is
presented with a textbox to i... more >>
datareader vs. dataset
Posted by Bihn at 3/9/2005 4:08:16 PM
I was reading about datareader which is said to be slimmer & faster then
dataset. Since the datareader have to go fetching the dat from the database
every time it need it, the data it gets then should be up to date. However,
both the IbuySpy and Duwamish samples and most, if not all, the shopping... more >>
Tab out vs. Mouse click
Posted by Prateek at 3/9/2005 4:04:09 PM
Hi All,
I have created an ASP.NET page that basically consists of a table having
text boxes in all cells. The table is created using client side java script.
There are some calculations being done when user changes text in any text
box and moves to the next text box. This is done in the Tex... more >>
aspnet_wp.exe restarts after updating assembly
Posted by wsMarkM at 3/9/2005 3:45:02 PM
I have a web app running on Windows 2000 with the home directory pointed to a
network share on a file server. We have a long running process which copies
jpg images from user's folders on a network share, processes them and copies
them to another location. Depending on the number of images thi... more >>
Copy a DataRow from one DataTable to another
Posted by Shawn at 3/9/2005 3:24:43 PM
Hi. I have 2 DataTables, dataTable1 and dataTable2. dataTable1 contains a
DataRow that I need to insert at index 5 in dataTable2. Here is my code:
For Each dataRow1 In dataTable1.Rows
If dataRow1.Item("id") = "3353" Then
dataRow2 = dataRow1
End If
Next
dataTable2.Rows.InsertAt(... more >>
position anlaysis related to page ranking
Posted by sravani at 3/9/2005 3:16:39 PM
good evening sir,
I want to know 5 Top Search Engines Link popularity, Position analysis, Url
future PageRank, Keyword
density, Reciprocal links checker & Automatic FTP transfer by using asp.net.
Is there any tool to find these things. or is there any method to find.
Please help me sir,
Th... more >>
how to find alexa page rank
Posted by sravani at 3/9/2005 3:14:04 PM
Good evening sir,
Sir I want to know about how to know google page ranking, alexa page ranking
with asp.net. Is there any api to find these or any other methods. Please
help me sir.
With regards,
Sravani.
... more >>
CSS Classes can cause problems
Posted by tshad at 3/9/2005 2:40:07 PM
I just found an interesting anomaly that I had not seen before.
It seems to affect both Datalist and Datagrids. If you set the background
color of the DataGrids using CSSClass (which is valid) instead of using
backcolor, you cannot programmatically set the color of the datalistitem or
data... more >>
Text box losing most recent Text value
Posted by Ken McCrory at 3/9/2005 2:37:51 PM
It's me and my registration page again. I have a subroutine that calculates
the total fees the registrant will incur and puts it in a textbox (not a
label because it has to be passed to another page).
txtTotalFees.Text = Format(dblTotalFees, "Currency")
The subroutine works fine IF I call ... more >>
DropDownlist
Posted by Sam at 3/9/2005 2:28:22 PM
I would like to know why no DropDownList id value ?
Coding
-------
sub page_load()
Dim con As New
SqlConnection(ConfigurationSettings.AppSettings("ConnectionString"))
Dim cmd As New SqlCommand()
cmd.CommandText = "Select gl_date,gl_date_value from gldate"
cmd.Connect... more >>
Firing a function on a doubleclick event
Posted by David Lozzi at 3/9/2005 2:14:50 PM
Hey All,
I have a listbox that I would like to fire an event on doubleclick. the
onDoubleClick property of the listbox isnt available be default, and I know
it will work with Javascript, but how do I use javascript to run a server
side function? Currently, I am using a Next button to accept... more >>
Return value from js function
Posted by siaj at 3/9/2005 2:03:07 PM
Hello,
I have a javascript function for a validation in the HTML page of the
asp.Net page..
I call this function in a Savebutton click
When the validation fails No postback should happen ( ie Save should not
happen)
the js function is as
function IsValidAmount()
{
... more >>
asp.net regex match running forever and hanging server
Posted by jason NO[at]SPAM cyberpine.com at 3/9/2005 1:58:00 PM
I have some asp.net (vb) code that is being fed some variables.
Sometimes, the regex pattern can't be found the process hangs and start
eating up server cpu (at 99%) for several minutes until it finally
times out.
How can I force it to timeout earlier so that this does not happen?
Thanks.
... more >>
Keep previous page position after postback
Posted by Ken McCrory at 3/9/2005 1:45:18 PM
I have a registration page where visitors are registering for a meeting. At
the bottom is a button for them to recalculate the total fees. When they
click the button it does recalculate the fees correctly but it positions the
page at the top. I want the page to be positioned where it was when ... more >>
DataList not keeping some of its attributes.
Posted by tshad at 3/9/2005 1:38:01 PM
I have a DataList where I am trying to set the background color to
particular DataListItems:
Dim oDLI as DataListItem = s.parent.parent
oDLI.BackColor = System.Drawing.Color.Green
This works fine.
The problem is that on any PostBack, the color is gone (empty).
The DataGrid do... more >>
Page size in bytes
Posted by Pietro at 3/9/2005 1:28:17 PM
I want know how to get de size in bytes of a page that is about to be
sent to the client after the request, is it possible?
Pietro... more >>
LDAP problem with System.DirectoryServices
Posted by goldan at 3/9/2005 1:26:53 PM
I copy and pasted code from the Microsoft site to query ldap t
authenticate a user for a site. I can't figure out what I'm doin
wrong. It gives me the following error: "Logon failure: unknown use
name or bad password". I'm new to ldap, active directory. My lda
server has only one group that con... more >>
problem with Radio Buttons
Posted by SenthilVel at 3/9/2005 1:04:01 PM
Hi
i have radio buttons in my Page and i am able to see some starnge behaviour
with those.
1st : DSN
2nd radio button: MSDE
the above 2 are in collection.
below the 2nd radio button i have 2 more radio buttons which are in
collection and have named as T and F
when ever i click on... more >>
Java script enabled textbox
Posted by GMK at 3/9/2005 1:00:36 PM
dear all
i'm building an asp.net application i have on one of my pages a checkbox i
want that whenever the user checkd the checkbox to enable a textbox and when
the user uncheck the checkbox the textbox will be diabled.
i want to make those action on client side.
so if anyone could provide me t... more >>
set selected value on a droplist
Posted by TJS at 3/9/2005 12:47:15 PM
need help with trying to set selected value on a droplist.
-- tried vCaptainID as integer and string , no luck
-- tried it in pre render and also after droplist is created , no luck
========= error ======================
Exception Details: System.NullReferenceException: Object reference not s... more >>
Remoting from ASP.Net
Posted by Brad Quinn at 3/9/2005 12:37:07 PM
I'm making a remoting call on (pretty much) every postback.
The remote object is single call, tcp/binary, hosted by a Windows service on
another machine.
Do I need to (or even can I) take steps to make this efficient. Are the
sockets managed intelligently by the runtime?
Thanks,
Brad... more >>
Placeholder's controls disappear during postback
Posted by Simon Wallis at 3/9/2005 12:07:07 PM
Hi, I have a PlaceHolder on a place, to which I add a DropDownList (using
myPlaceHolder.Controls.Add(ddl). The user selects something from the
DropDownList and posts the page.
Now I try to get the value of what the user selected but the PlaceHolder's
Controls collection is empty. I've trie... more >>
change to use .net instead of dreamweaver
Posted by Wendy Elizabeth at 3/9/2005 11:54:53 AM
I am having problems using Dreamweaver mx 2000. My company purchased two
licenses of the Universal Macromedia subscription. The other web programmer
is not working at this company any more and I need to make changes to a
website that was written using Dreamweaver mx 2000. I have no exper... more >>
asp.old inline html in functions
Posted by Vikas Yadav at 3/9/2005 11:54:36 AM
Hi,
I have been only working in asp.old.
Upon reading and specs, i learned that asp.net does not support just
HTML rendering subs. like:
sub showHeader()
%><table>
<tr><td>Title on <%=now()%></td></tr>
<%
end sub
I read about response.writefile but that would only output raw text ... more >>
What is the .Net equivalent of jscript escape/unescape?
Posted by Harry Keck at 3/9/2005 11:45:05 AM
Is there a set of methods in the .Net framework that do the same thing as the
jscript functions escape and unescape?
I get very close with HttpUtility.UrlEncodeUnicode, but it puts "+" for
spaces instead of "%20". Uri.EscapeString seems to create the correct escape
string, but there is no ... more >>
Number of Visitors
Posted by TheOne at 3/9/2005 11:31:34 AM
Hi I am trying to display on a web page number of visitors on the site. I am
doing this by increasing +1 in global.asax on Session_start and
subtracting -1 on Session_end. I am storing value in the
Application("numberOfVisitors"). It works fine but when I compare values to
number of ASP Applicat... more >>
server side object tags in global.asax
Posted by randyr at 3/9/2005 11:13:08 AM
I am developing an asp.net app based on a previous asp application.
in the asp applications global.asa file I had several
<object id="id" runat="server" scope="scope" class="comclass"> tags for
objects that the app used to speed up some global level data access and
functionality.
I hav... more >>
Available Position: ASP.net/VB.net
Posted by Erich Kolb at 3/9/2005 11:08:28 AM
R&B Solutions, a leader in medical receivables management, is currently
recruiting for several .Net developers who have in depth experience with
ASP.net, VB.net, XML, XSLT, Web Services, and SQL 2000 technologies.
The role requires both broad and deep technology knowledge and the
ability to ... more >>
Background postbak like Orkut
Posted by Fabiano at 3/9/2005 11:07:03 AM
Please,
someone know how can i do a background postback, such as the "Friend Karma"
at Orkut?
Tks in adv.
Fabiano
... more >>
Adding Image to Template Column
Posted by Sparky Arbuckle at 3/9/2005 10:45:14 AM
Does anyone know of a way to add an image into a DataGrid's Template
Column? Any suggestions are greatly appreciated.
... more >>
Excel automation
Posted by Nigel Stratton at 3/9/2005 10:11:21 AM
I am wanting to export a datagrid to Excel and I can make a late-binding,
automation reference to Excel and run Excel but I cannot activate it. It
shows up under processes but I cannot make it appear as a program. I used to
get this when I would automate Excel and not .Activate() it. This work... more >>
response.redirect
Posted by dappyl at 3/9/2005 10:03:03 AM
I need to open new window in the response.redirect. is
there any way to do it?... more >>
dual drop downs
Posted by Mike at 3/9/2005 9:51:12 AM
I have 2 drop downs on my web page and this will allow the user to filter the
data on one drop down or both. How can I link these dropdowns together to
allow the user to filter on one or both?
example:
drop down one is cars:
BMW
Lexus
Mercedes
dropdown 2 is type
SUV
Sedan
Coupe
C... more >>
hiding table rows by id?
Posted by MattB at 3/9/2005 9:47:54 AM
I'm trying to have a table that I can selectively hide or show it's rows
depending on some data in a database.
I see that I can refer to a row by index and toggle it's visible
property that way (mytable.rows(0).visible = false), but I may not
always know the order of rows so I'd love to be ab... more >>
Try to restrict acces to all my pages.
Posted by Jensen bredal at 3/9/2005 9:31:46 AM
Hello,
I'm trying to protect my pages by allowing only authenticated users to view
them.
I have therefore taken the following action in web.config:
<authentication mode="Forms">
<forms name=".Mycookiename" loginUrl="Login.aspx" protection="All"
timeout="30" path="/">
</forms>
</aut... more >>
General object type
Posted by tshad at 3/9/2005 9:15:22 AM
I want to use the same code for my DataGrid item as I do for my DataList
Item. The only difference is the data type. Is there a generic data type I
can use?
I have a datagrid inside of my data list and want to be able to select
either the dataListItem or the dataGridItem and do exactly th... more >>
Printing a report from a datagrid.
Posted by Mattyw at 3/9/2005 9:14:24 AM
Hi,
I am relatively new to Visual Studio.NET (i am using VB), I have
created a datagrid which I have bound to a SQL database, when I browse
the form with the datagrid it displays all the columns as expeced using
the following code:
If Not IsPostBack Then
SqlConnection1.Open()
... more >>
Need to override session timeout due to page refresh...
Posted by RUSSELL MCGINNIS at 3/9/2005 9:03:05 AM
I have a web site that uses Form Authentication with the Session timeout set
to 20 minutes, however one of the pages refreshes itself every 30 seconds. Is
there a way to override the session behaviour of resetting the timeout
everytime that page refreshes, so that if the user sits on that page... more >>
Set Nothing
Posted by Sam at 3/9/2005 8:53:10 AM
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.
Compiler Error Message: BC30807: 'Let' and 'Set' assignment statements are
n... more >>
OnSelectedIndexChanged event does not work with the selection on the checkbox ( on the cell of Datagrid control ) ?
Posted by bienwell at 3/9/2005 8:52:22 AM
Hi,
Does the OnSelectedIndexChanged event work when we mark on the checkbox on
the cell of Datagrid control ? I tried to call this event; it didn't
affect anything.
Do you know any event that make the selection on the checkbox work ? Please
give me your advise. Thanks
... more >>
ASP.NET application and first time load
Posted by Jason at 3/9/2005 8:48:31 AM
Hi
I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a typical
aspx page. i.e. first l... more >>
DataGrid ButtonColumn - Please help !!!
Posted by bienwell at 3/9/2005 8:45:12 AM
Hi,
I have a datagrid control with the declaration as follows:
<script runat="server">
Sub DGrid_ItemDataBound(sender As Object, e As DataGridItemEventArgs)
If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType =
ListItemType.AlternatingItem Then
Dim drv As DataRowV... more >>
Losing ddl and repeater items on postback
Posted by mattcur NO[at]SPAM gmail.com at 3/9/2005 8:20:46 AM
I have a ddl that is populated in my If Not IsPostBack block in the
Page_load event. A repeater is also populated at this time, showing
different domains for a website. The ddl contains different price
plans that can be selected.
My problem is that the user has a choice of being able to update... more >>
Change Labels to Textboxes easily?
Posted by Ken McCrory at 3/9/2005 8:20:02 AM
I have a web form page (.aspx) with 95 label controls that I now need to be
text boxes. Is there an easy way to change those to what I want using
something like a find and replace or am I stuck "changing" each one by hand
by deleting the label and dragging a text box in its place?
Alternativel... more >>
Q: creating menu
Posted by JIM.H. at 3/9/2005 7:45:05 AM
Hello,
How would you create menu in asp.net?
Thansk,
Jim.
... more >>
Zorder bug????
Posted by leetw NO[at]SPAM dialstart.net at 3/9/2005 7:45:05 AM
Hi folks,
I've created a custom control which consists of a textbox,calendar
control and button. User clicks button and chooses date from calendar
which in turn populates the textbox. Nothing to taxing there!
However, the problem I have is the calendar ctl is always rendered
behind existing... more >>
How to postback in order for server code to run
Posted by aa at 3/9/2005 7:35:42 AM
How postback in order for server code to run from client side.
I don't want to use webmethod. And I want that everything wold be in one
page
... more >>
Grid selection need to run routine
Posted by Chris at 3/9/2005 7:35:12 AM
I have a need to automatically save a record when a user leaves me form.
Everything works great unless the user uses the grid and selects an item via
a link column. Then I can't capture the record save (whihc I do via images
buttons; save and add detail record). The routine runs the btn_save c... more >>
Can Web Setup Add Application Pool?
Posted by briano NO[at]SPAM avanade.com at 3/9/2005 7:33:32 AM
I see where I can create Virtual Directories with a Web Setup Project.
Can I assign the Virtual Directory it's own Application Pool with the
proper Application Identity?
Also, it appears my team is creating a whole WebSite for each
application, not only a web folder.
Thanks,
Brian
... more >>
Server Error
Posted by KudaKuLariGagahBerani at 3/9/2005 7:16:01 AM
hi
i created a web user in TablePaging1.ascx and found that
this error
Control 'TablePaging1_Firstbutton' of type 'LinkButton'
must be placed inside a form tag with runat=server.
this is my code:
<%@ Control Language="vb" AutoEventWireup="false"
Codebehind="tablePaging.ascx.vb"
Inhe... more >>
ASP.NET Development
Posted by Linus at 3/9/2005 7:13:03 AM
Being a ASP developer for a consultant company thinking of starting
developing with ASP.NET I have read literally hundreds of web pages and posts
in discussion forums on the Internet to get an idea of what we will need to
adapt to. I have read Microsoft’s “Team Development with Visual Stud... more >>
Error: Could Not Open With Design View
Posted by Raed Sawalha at 3/9/2005 6:49:02 AM
I have the following table which i can not switcha to design view error
message said
Could not open in Design view. Quote values differently inside a '<%
...."value"... %>' block.
and the line which make the error is anchor but i cannot make it work.
<TABLE id="tblDocList" dir="<%#str... more >>
.Net 2.0: web site not running
Posted by mma NO[at]SPAM cas.com at 3/9/2005 6:30:43 AM
Hi
i'm trying to run a .Net web site perfectly working with .Net version
1.1 under visual studio 2005 beta 2.
accessing the site using debug mode works smoothly but when i publish
the site to a web site and try to access it i always get this error
Failed to access IIS metabase.
Descriptio... more >>
crystal report coding
Posted by dappy at 3/9/2005 6:14:06 AM
<cr:CrystalReportViewer
id=CrystalReportViewer2
style="Z-INDEX: 101; LEFT: 200px; POSITION: absolute;
TOP: 184px"
runat="server"
Width="1030px" Height="1073px"
ReportSource='<%# "d:\Report\Report.rpt" %>'>
</cr:CrystalReportViewer>
is this correct what i have here? but when i run it ... more >>
Can't get a reference to user control in datagrid
Posted by Don at 3/9/2005 6:03:25 AM
I created a Web User Control in my project and need to use it in a
datagrid. The data in this control needs to be updated and the control
has several properties that need to be databound.
Using the designer I created a a dataGrid with an Edit, Update, Cancel
column, and an empty template colu... more >>
COM object with CLSID is either not valid or not registered
Posted by Joel at 3/9/2005 5:11:07 AM
I have a asp.net web application executing on a windows 2003 Server. I make a
reference in the project to a COM object and the Interop gets created
successfully. When the application executes I create a instance of the COM
object as such (c#):
XMLAPI.GMDataClass gdc;
gdc = new XMLAPI.GMDataC... more >>
Event 1084 ASPNET Insufficient Rights
Posted by ian.taite NO[at]SPAM zen.co.uk at 3/9/2005 3:43:06 AM
Hello All,
ASP.NET has stopped working on my development server. I've read the
various posts re this subject, but my circumstances seem unique. I
need to know what causes the problem and how to remedy it. If possible
I would prefer not to rebuild the server, as the SQL setup is quite
involved... more >>
Getting LOGON_USER in a textbox
Posted by Patrick Olurotimi Ige at 3/9/2005 2:17:02 AM
On PageLoad i did -:
name.ID = Request.ServerVariables[LOGON_USER];
on asp.net page i have
<asp:textbox runat="server" ID="name"/>
But when i load my page the textbox is blank
Any ideas?
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rew... more >>
Retrieve result from SqlCommand
Posted by Wong CS at 3/9/2005 2:15:28 AM
Dear developer,
I'm developing a web service with VS .NET and using C#. And part of the
webservice is to get data from database (by using SELECT), however, the
result from the sql query i cannot parse it to string, how can i get the
result from the SqlCommand..? dataset or datareader..?.
pl... more >>
Smart Client Downloading -Sattelite Assembiles
Posted by Venkat Kasaram at 3/9/2005 2:03:07 AM
Hi
I am working with Smart Client.I am having a windows application which
needs to works with Multiple Languages
so i am using Sattilitie assemblies.
It is working fine if run the apllication as a windows application.
But once i download to client machines by using SmartClient applica... more >>
Crystal report Error in showing the viewer image
Posted by ashok.ponnusamy NO[at]SPAM gmail.com at 3/9/2005 1:33:52 AM
i am using crystal report in my aspx page. i am using stored procedure
to generate the report. it's work fine and shows the result based on
parameter input. but it doesn't show any reportviewer images like next,
print images. and i want to show the print in the report. how can i get
out from thi... more >>
cache and https
Posted by martyn_wynne NO[at]SPAM hotmail.com at 3/9/2005 12:38:23 AM
I'm am finding it hard to find in black and white the answer to the
following question, are files like javascipt and css files cachabled
when on a pure https site?
Any links to full explinations would be great, also any one know what
the go on authenicated sites too, if forms authentication (.... more >>
About custom MembershipProvider
Posted by ChrisTorng at 3/9/2005 12:01:04 AM
I am studing VS 2005 Feb CTP, and thinking how to use those new features to
my new web project. I think the currently implemented MembershipProviders is
useless, because if I want to add a new field like phone/address, I must
write my MembershipProvider, and all related MembershipUser,
Membe... more >>
|