Click here to Skip to main content
15,910,797 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: imp Pin
niki_nilu21-Nov-07 1:17
niki_nilu21-Nov-07 1:17 
GeneralRe: imp Pin
Imran Khan Pathan21-Nov-07 1:21
Imran Khan Pathan21-Nov-07 1:21 
AnswerRe: imp Pin
InsDev21-Nov-07 1:22
InsDev21-Nov-07 1:22 
QuestionAvoid refreshing using Timer for client side code Pin
SreejithAchutan21-Nov-07 0:54
SreejithAchutan21-Nov-07 0:54 
AnswerRe: Avoid refreshing using Timer for client side code Pin
John-ph21-Nov-07 1:04
John-ph21-Nov-07 1:04 
QuestionImages retriving but having some problem Pin
Krishna Varadharajan21-Nov-07 0:46
Krishna Varadharajan21-Nov-07 0:46 
AnswerRe: Images retriving but having some problem Pin
pmarfleet21-Nov-07 0:57
pmarfleet21-Nov-07 0:57 
GeneralRe: Images retriving but having some problem Pin
Krishna Varadharajan21-Nov-07 1:11
Krishna Varadharajan21-Nov-07 1:11 
Each and every product having different images, but iam receiving all same images, if i go for the condition.

Html code :
<asp:image id="im1" runat="server"> <asp:image id="im2" runat="server"> <asp:image id="im3" runat="server"> code Behind :

protected void Button1_Click(object sender, EventArgs e)
{
con.Open();
SqlCommand cmd10 = new SqlCommand("select * from onlinegoa2 where state='Karnataka'", con);
SqlDataReader dr10 = cmd10.ExecuteReader();

while (dr10.Read())
{

string x = dr10[4].ToString();
string FileName = x.ToString();
im1.ImageUrl = "./uploads/" + FileName;

}
con.Close();

con.Open();
SqlCommand cmd11 = new SqlCommand("select * from onlinegoa2 where state='Karnataka'",con);
SqlDataReader dr11 = cmd11.ExecuteReader();

while(dr11.Read())
{
string bb = dr11[6].ToString();

string FileName1 = bb.ToString();
im2.ImageUrl = "./uploads/" + FileName1;
}

krishna

GeneralRe: Images retriving but having some problem Pin
pmarfleet21-Nov-07 1:25
pmarfleet21-Nov-07 1:25 
Questionimp Pin
niki_nilu21-Nov-07 0:43
niki_nilu21-Nov-07 0:43 
AnswerRe: imp Pin
Sun Rays21-Nov-07 0:49
Sun Rays21-Nov-07 0:49 
AnswerRe: imp Pin
pmarfleet21-Nov-07 0:51
pmarfleet21-Nov-07 0:51 
Questioncheckbox validation Pin
Prakash_Mishra21-Nov-07 0:26
Prakash_Mishra21-Nov-07 0:26 
AnswerRe: checkbox validation Pin
John-ph21-Nov-07 0:42
John-ph21-Nov-07 0:42 
AnswerRe: checkbox validation [modified] Pin
Sun Rays21-Nov-07 0:44
Sun Rays21-Nov-07 0:44 
GeneralRe: checkbox validation Pin
Prakash_Mishra21-Nov-07 1:06
Prakash_Mishra21-Nov-07 1:06 
GeneralRe: checkbox validation Pin
Prakash_Mishra21-Nov-07 2:08
Prakash_Mishra21-Nov-07 2:08 
AnswerRe: checkbox validation [modified] Pin
mykosher21-Nov-07 1:25
mykosher21-Nov-07 1:25 
Questionwindow authentication Pin
Sonia Gupta21-Nov-07 0:05
Sonia Gupta21-Nov-07 0:05 
AnswerRe: window authentication Pin
Pete O'Hanlon21-Nov-07 0:18
mvePete O'Hanlon21-Nov-07 0:18 
QuestionHow to get MAC address of a remote machine using ASP.NET..? Pin
Balagurunathan S20-Nov-07 23:46
Balagurunathan S20-Nov-07 23:46 
AnswerRe: How to get MAC address of a remote machine using ASP.NET..? Pin
Sandeep Akhare20-Nov-07 23:49
Sandeep Akhare20-Nov-07 23:49 
GeneralRe: How to get MAC address of a remote machine using ASP.NET..? Pin
Balagurunathan S21-Nov-07 0:01
Balagurunathan S21-Nov-07 0:01 
GeneralRe: How to get MAC address of a remote machine using ASP.NET..? Pin
Balagurunathan S21-Nov-07 0:06
Balagurunathan S21-Nov-07 0:06 
GeneralRe: How to get MAC address of a remote machine using ASP.NET..? Pin
Sandeep Akhare21-Nov-07 0:16
Sandeep Akhare21-Nov-07 0:16 

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.