Click here to Skip to main content
15,914,820 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Invalid character in a Base-64 string Pin
slSoftware14-Oct-09 22:39
slSoftware14-Oct-09 22:39 
Questionhow to load swf files in ASP.NET Pin
Purish Dwivedi14-Oct-09 20:10
Purish Dwivedi14-Oct-09 20:10 
AnswerRe: how to load swf files in ASP.NET Pin
Abhijit Jana14-Oct-09 20:26
professionalAbhijit Jana14-Oct-09 20:26 
GeneralRe: how to load swf files in ASP.NET Pin
Purish Dwivedi14-Oct-09 20:46
Purish Dwivedi14-Oct-09 20:46 
GeneralRe: how to load swf files in ASP.NET Pin
Purish Dwivedi14-Oct-09 21:24
Purish Dwivedi14-Oct-09 21:24 
GeneralRe: how to load swf files in ASP.NET Pin
sashidhar14-Oct-09 21:47
sashidhar14-Oct-09 21:47 
GeneralRe: how to load swf files in ASP.NET Pin
Abhijit Jana14-Oct-09 21:52
professionalAbhijit Jana14-Oct-09 21:52 
Questionimage does not display immediately after upload Pin
vikas shukla14-Oct-09 18:56
vikas shukla14-Oct-09 18:56 
hi sir
i am trying for showing image immediately after upload.but image can not get the path of image.but my upload button is doing well .it saves the images at correct location.code is following.please point out my fault.




if (btnUpload.FileName == "")
{
return;
}
try
{
Img_Item.ImageUrl = "";
string name1 = btnUpload.FileName;
bool CheckImg = img.CheckImage(btnUpload.PostedFile.ContentType);
if (CheckImg == false)
{
Label2.Text = "Not a Valid Image";
return;
}

string Act_Path = txtProductId.Text + ".jpg";
string pro_img = txtProductId.Text + ".jpg";
string su = Server.MapPath("") + "\\images\\" + pro_img;


Boolean Img_Change = true;

btnUpload.SaveAs(su);

bool check1 = File.Exists(su);

if (check1 == true)
{
Label2.Text = "Upload Successful";
Img_Item.Visible = true;
Img_Item.ImageUrl = su;
lblImgPath.Text = su;
btnAdd.Visible = true;
Label2.Visible = true;
}
else
{
Label2.Visible = true;
Label2.Text = "Upload Failed";

}

}
catch (Exception exp)
{
Label2.Visible = true;
Label2.Text = "exp.Message";
}
}
AnswerRe: image does not display immediately after upload Pin
Abhijit Jana14-Oct-09 19:12
professionalAbhijit Jana14-Oct-09 19:12 
GeneralRe: image does not display immediately after upload Pin
vikas shukla14-Oct-09 19:20
vikas shukla14-Oct-09 19:20 
GeneralRe: image does not display immediately after upload Pin
Abhijit Jana14-Oct-09 19:37
professionalAbhijit Jana14-Oct-09 19:37 
GeneralRe: image does not display immediately after upload Pin
vikas shukla14-Oct-09 19:43
vikas shukla14-Oct-09 19:43 
GeneralRe: image does not display immediately after upload Pin
Abhijit Jana14-Oct-09 20:01
professionalAbhijit Jana14-Oct-09 20:01 
GeneralRe: image does not display immediately after upload Pin
sashidhar14-Oct-09 23:21
sashidhar14-Oct-09 23:21 
Question???Some function exists: Pin
GuilleB0914-Oct-09 9:45
GuilleB0914-Oct-09 9:45 
AnswerRe: ???Some function exists: Pin
Christian Graus14-Oct-09 10:04
protectorChristian Graus14-Oct-09 10:04 
Questionshow database column in grid view as a row Pin
MQ_softman14-Oct-09 9:19
MQ_softman14-Oct-09 9:19 
AnswerRe: show database column in grid view as a row Pin
Abhijit Jana14-Oct-09 9:33
professionalAbhijit Jana14-Oct-09 9:33 
QuestionLink to an other website Pin
romj14-Oct-09 8:47
romj14-Oct-09 8:47 
AnswerRe: Link to an other website Pin
Abhijit Jana14-Oct-09 8:56
professionalAbhijit Jana14-Oct-09 8:56 
GeneralRe: Link to an other website Pin
romj14-Oct-09 11:25
romj14-Oct-09 11:25 
GeneralRe: Link to an other website Pin
romj14-Oct-09 12:50
romj14-Oct-09 12:50 
QuestionASP.NET C# ONLINE VENUE BOOKING SYSTEM Pin
NhlanhlaK14-Oct-09 8:02
NhlanhlaK14-Oct-09 8:02 
AnswerRe: ASP.NET C# ONLINE VENUE BOOKING SYSTEM Pin
Abhijit Jana14-Oct-09 8:23
professionalAbhijit Jana14-Oct-09 8:23 
AnswerRe: ASP.NET C# ONLINE VENUE BOOKING SYSTEM Pin
Richard MacCutchan14-Oct-09 8:46
mveRichard MacCutchan14-Oct-09 8:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.