|
Amit Battan Ror wrote: but not working in 2005
What does "not working" mean? Read the first message in the forum "How to get an answer to your question", pay attention to item #2.
Also here are some handy forum guidelines[^]
led mike
|
|
|
|
|
Amit Battan Ror wrote: but not working in 2005
As led mike said, what do you mean by "not working"? Be more clear and someone may help you out.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Why on earth does your code have Textbox1 and Textbox2 ? How is that readable ?
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Is there any converter for Coverting ASP to ASP.net???
Thanks in advance
|
|
|
|
|
Yes, pay me £50 p/h and I will do it..
Seriously though, if your converting to a particular technology then you are going to want to make use of the features that make it worth using the particular technology, therefore converting an application between the two is going to require a rewrite.
James
James Simpson
Web Developer
imebgo@hotmail.com
P S - This is what part of the alphabet would look like if Q and R were eliminated Mitch Hedberg
|
|
|
|
|
I totally agree with James' comments above (*), however, if you must.. the follwoing links may help:
On MSDN[^]
On asp.net[^]
(*) apart from doing it for you for £50 p/h - I wouldn't do it for twice that much! Deciphering legacy code is bad enough - when it's classic ASP I back off with long barge-pole!
|
|
|
|
|
I think the entire idea behind the software on those links are evil.. but good find
James
James Simpson
Web Developer
imebgo@hotmail.com
P S - This is what part of the alphabet would look like if Q and R were eliminated Mitch Hedberg
|
|
|
|
|
Phil Uribe wrote: when it's classic ASP I back off with long barge-pole!
How long of a barge pole? Longer the better
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Hi to all,
I m working with datalist control in asp.net.there is an item category whose value is coming from database at runtime.Each category is associated with many images.I want to display those images randomly one by one after a gap of 10 seconds.but my problem is that the images are saved in database .Plz help me to solve this problem.
|
|
|
|
|
So U have URL of Images in DataBase or Image Itself as Object?/?
|
|
|
|
|
m having Images as an object into database.
|
|
|
|
|
can anyone tell me how can i capture screen shot of active aspx page ????
umerumerumer
|
|
|
|
|
How u normally take screenshots????
|
|
|
|
|
i mean to say programmatically... not using ctrl+print screen..
umerumerumer
|
|
|
|
|
|
Would you like to get screen shot of that active aspx screen / page or other applictaions running in client PC. Say Notepad, Calulator etc.. If it same screen just capure the HTML source then convert into to JPEG. else you need to write a activeX control to take screen shots of other applications
Venky
|
|
|
|
|
is it possible in asp.net? vb6 style drag drop database field to generate textboxes.
thanks in advance.
|
|
|
|
|
What do u ask?...I'd not undstnd.
Balasubramanian K.
|
|
|
|
|
Hi all,
I am using FreeTextBox editor.I use ImageGallery to insert images.Then I send the text in an email.My problem is that how can I send the inserted images to the receipient.
Please help me.I m sure some1 on codeproject woul be able to solve my prob.
Thnx
|
|
|
|
|
The way to embedd images within an email is to attach them and then to send HTML email with img tags that show the images. The other way, is to send HTML mail that shows images which are referenced to externally, except that that those will usually start off blocked.
If you just want to send the images, not to show them to the reader, that's far easier. Attach them to the email.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
following is the code I am using to send image in img tag.But hte image doesn'tt show up at the reader.
LinkedResource title = new LinkedResource("va.gif.bmp");
title.ContentId = "Title";
AlternateView view = AlternateView.CreateAlternateViewFromString
(
"
" + strMsg,
null,
System.Net.Mime.MediaTypeNames.Text.Html
);
view.LinkedResources.Add(title);
msgObj.AlternateViews.Add(view);
//sending email
|
|
|
|
|
Well, that obviously can't work. You give a filename, why would that work across the web ? That won't even work if the html is not in the same folder as the image. The image needs to be visible on the INTERNET, so you need to make your src something like www.myhost.com/va.gif.bmp. If what you enter doesn't show the image when entered into a browser anywhere in the world, it can't work,
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
i m facing problems with ado.net
|
|
|
|
|
shahid hussain pakistan wrote: i m facing problems with ado.net
ado.net is facing problems with you
If You win You need not Explain............
But If You Loose You Should not be there to Explain......
|
|
|
|
|
Well, it works fine for the rest of us, so read the documentation and try again.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|