all groups > asp.net > august 2003 > threads for saturday august 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
manipulating an image file in asp.net with C#
Posted by Will at 8/9/2003 11:10:38 PM
I've got a file upload happening to upload an image file
to the server. During this process I want to also create a
thumbnail of the image in the same directory, and adjust
the size of the image if it's too large horizonally or
vertically. I am using an httpfilescollection to gain
access t... more >>
File upload assitance requested
Posted by Big Tony at 8/9/2003 8:39:35 PM
I'm going crazy trying to do something I think should be simple.
Task: Windows service that will post a file to a WebServer automatically.
I have created a form on the remote site. I can use IE and post to it.
When I try to use System.Net.Webclient to post to the form, it does not work.
No ... more >>
Setting values in an asp:dropdownlist
Posted by Kerri at 8/9/2003 8:14:34 PM
I have a page that allows users to create a user account.
The aspx has various dropdowns that I populate by binding
the dropdownlist to a dataset.
OK so far?
However, I also want a page where the user can edit their
profile..so I need to be able to set the selected value
based on what... more >>
iframe in aspx page
Posted by fredg1232003 NO[at]SPAM yahoo.com at 8/9/2003 7:08:46 PM
I have an aspx page: Main.aspx which has several components that cause
a postback. In the page Main.aspx I also have an iframe which contains
a multi-page pdf file.
The problem I am facing is that whenever the user does an action which
causes a postback on the main page Main.aspx, the page pos... more >>
HowTo check if Date is empty (#12.00.00 AM#) ???
Posted by Andreas Klemt at 8/9/2003 6:21:16 PM
Hello,
I have this
Dim myDate As Date
...
...
How can I check if this date is empty (value #12.00.00 AM# is in there) ?
Thanks,
Andreas
... more >>
ASP.NET DateTime.Parse oddness
Posted by Kevin Kenny at 8/9/2003 6:19:41 PM
Dear All,
I have a date time validation method thus:
public static bool IsDate(string date, System.IFormatProvider provider) {
try {
DateTime.Parse(date, provider)
return true;
} catch (System.FormatException)
return false;
}
}
This works a treat f... more >>
Empty Datagrid
Posted by Davef at 8/9/2003 6:16:39 PM
Is there a way I can replace the datagrid with text "No recored returned" if
there is no data?
--
______________________
David Fetrow
HelixPoint LLC.
http://www.helixpoint.com
davef@helixpoint.com
Interested in Affordable Email Marketing?
Check out the HelixMailer at http://www.helix... more >>
how to process items in response.form collection dynamically?
Posted by Kathy Burke at 8/9/2003 5:43:13 PM
HI. in asp.net app, I have an xmlDocument that I transform to the client
html. Using xsl I create a few textboxes to capture user input. Each of
these are related to <data> elements in the xmlDoc.
I want to use the Forms collection to post the html form back to an
asp.net page, and process eac... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
compiler error code 128
Posted by Kevin Marshall at 8/9/2003 5:35:37 PM
Help !!!!!!!
All the ASP.NET websites on our server are giving the error:
The compiler failed with error code 128
the server is running .NET Framework 1.1 and I have reinstalled it a few
times, I even removed and re-installed IIS.
Does anyone know what's wrong, it's a matter of time til... more >>
how to returning a table id..
Posted by smen at 8/9/2003 4:23:14 PM
hiye, i use sqlcommand.executescalar to insert datainto
my table hoping that it will return the table id, but its
not :(. can someone uot there tell mehows its done?
thanks in advance.... more >>
problems with Request.UrlReferrer
Posted by Harley at 8/9/2003 4:08:00 PM
i have found a problem when using Request.UrlReferrer. if i call the page
using a javascript function, the referrer is null...
i need to call a page and open it on a specific browser size, with no
toolbar, menu, etc. and also need to check that the call comes from a
specific page.
how to make r... more >>
asp.net form post
Posted by LIN at 8/9/2003 3:38:50 PM
hii im working on asp.net and i have a form which has 4 asp.net buttons ech
time i click on a button the page is posted now i want to know on pageload
which button has caused the post action.. of the page ...this is would help
me to write button specific events on tht page ....can any one help ou... more >>
Color => string ?
Posted by Lloyd Dupont at 8/9/2003 2:05:59 PM
I'm designing a web user control
it has a color property and I want to output in the HTML something like:
bgcolor=#FFDEAD
for this in the C# code I write(HtmlTextWriter output)
output.Write(" bgcolor={0}", BackColor);
but this doesn't work at all, my output is
bgcolor=Color [A=255, R=2... more >>
Duwamish Framework--Filling DataSet
Posted by Paul at 8/9/2003 1:12:17 PM
I'm trying to use the Duwamish 7.0 Framework to make a
distributed application.
I re-wrote parts of the application to work with Students
instead of Customers. So instead of a unique email
constraint I have a unique constraint on FirstName,
LastName, DateOfBirth combination.
Wheneve... more >>
send mails from asp.net pages
Posted by Duy Nguyen at 8/9/2003 12:35:27 PM
how can I send mails from asp.net pages?
... more >>
Browser Crashing... ????
Posted by Temp at 8/9/2003 12:11:26 PM
I'm not sure what the deal is , but every time I try to do a postback in my
application the browser crashes. This problem just started occuring, and I'm
not sure what is causing it. I know this is pretty ambiguous, but maybe
someone here will have some advice as to what I should be looking for.
... more >>
Popup Window on Button Push
Posted by Temp at 8/9/2003 10:38:43 AM
Can anyone tell me how I can open a new browser window when a button is
pressed?
I tried adding an <a href=...> encapsulating the button, but it didnt work.
Any suggestions?
--
_____________________________
Ron Rodenberg
Lead Software Engineer
Razorvision Technology, Inc.
(214) 207-1... more >>
How to strip HTML markup from string?
Posted by Michal A. Valasek at 8/9/2003 4:48:20 AM
Hello,
I want to transform text with HTML markup to plain text. Is there some
simple way how to do it?
I can surely write my own function, which would simply strip everything with
< and >. But if someonew has already written something similar for .NET, I
would prefer more clever solution, w... more >>
|