|
Can you help me in developing a forum..?
|
|
|
|
|
|
N a v a n e e t h wrote: No.
Hey Navaneeth, Why No ? We can developed this if he paid us for this
cheers,
Abhijit
|
|
|
|
|
If you want to develop a forum.It can be easily done in Sharepoint.Use WSS3.0 its free.
Cheers!!
Brij
|
|
|
|
|
Dear All,
I am using repeater for display the record on page now issue is i am trying to give heading of that record but from database in HeaderTemplate
it is not working properly .
what should i do?
Sajjad ali
|
|
|
|
|
Why do you Post the same thing twice?
Vuyiswa Maseko,
Sorrow is Better than Laughter, it may Sadden your Face, but It sharpens your Understanding
VB.NET/SQL7/2000/2005
http://vuyiswamb.007ihost.com
http://Ecadre.007ihost.com
vuyiswam@tshwane.gov.za
|
|
|
|
|
i need quick answer
|
|
|
|
|
Repeated post
Cheers!!
Brij
|
|
|
|
|
Dear All,
I am using repeater for display the record on page i now issue is i am trying to give heading of that record but from database in HeaderTemplate
it is not working properly .
what should i do?
Sajjad ali
|
|
|
|
|
Without code noone can help you.
Cheers!!
Brij
|
|
|
|
|
in my application i want to use an oracle cursor how can it be possible.
thanx in advance
|
|
|
|
|
souravghosh18 wrote: i want to use an oracle cursor how can it be possible.
By reading the documentation[^]
|
|
|
|
|
can anyone guide me that i have a date picker dll and i want to use same dll and it does not have readonly property now can i set something extra to set it readonly..?????? any sugession....
umerumerumer
|
|
|
|
|
Do you have the code ? If yes you can Customize . If no ..Then there is no way .
cheers,
Abhijit
|
|
|
|
|
You can override the property.Check the link
[^]">
Cheers!!
Brij
|
|
|
|
|
yes i know how to override the property but it is only dll there is no code my obviously we can make changes in it is there any posiblity to place any div or pannel some thing transparent on it while designing it??
umerumerumer
|
|
|
|
|
i am a beginner of asp.net2.0 and c#,i am storing an image(binary data)in a sql server 2005 db table,i want to display image to datalist please help me
|
|
|
|
|
Duplicate post again?One will always suffice!!
Cheers!!
Brij
|
|
|
|
|
You need to create a ASPX page which reads data from database and send response with image content type. Assume it's name is ShowImage.aspx . In your datalist, put template columns and specify the image tag like
<img src="ShowImage.aspx"> If you have to pass additional values to ShowImage.aspx , pass it through query string.
|
|
|
|
|
I used this code for datalist page load-frmCheck.aspx
clsSqlHelp objHelp = new clsSqlHelp();
clsBllChek objBllCheck = new clsBllChek();
string imggrabFlag = "PF";
protected void Page_Load(object sender, EventArgs e)
{
objBllCheck.comboFill(cmbProduct);
//objBllCheck.DataListFill(dlProduct);
DatalistFill();
}
protected void btnSearch_Click(object sender, EventArgs e)
{
}
public void DatalistFill()
{
objHelp.openConnection();
DataSet objDs = new DataSet();
SqlDataAdapter objDa;
string strSql;
//strSql = "select imgId,imgData,imgTitle from checktabl";
strSql = "select prd_id,name,logo,logo_Length from Edms_Product_Mstr";
objDa = new SqlDataAdapter(strSql, objHelp.dbCon);
objDa.Fill(objDs);
objDs.Tables[0].Columns.Add("imgFile");
foreach (DataRow dt in objDs.Tables[0].Rows)
{
dt["imgFile"] = ("imgGrab.aspx?id=" + dt["prd_id"] + "&flag=" + imggrabFlag);
int idc = Convert.ToInt32(dt["prd_id"]);
}
dlProduct.DataSource = objDs;
dlProduct.DataBind();
objHelp.dbCon.Close();
}
public string FormatURL(object strArgument)
{
int id = Convert.ToInt32(strArgument.ToString());
//return ("imgGrab.aspx?id=" + Convert.ToInt32(strArgument.ToString()));
return ("imgGrab.aspx?id=" + Convert.ToInt32(strArgument.ToString()) + "&flag=" + imggrabFlag);
}
2 also i used an another page imgGrab and write the code below
protected void Page_Load(object sender, EventArgs e)
{
objHelp.openConnection();
int id = Convert.ToInt32(Request.QueryString["id"]);
DataSet ds = new DataSet();
SqlDataAdapter da;
byte[] arrContent;
DataRow dr;
string strSql="";
if (Request.QueryString["flag"].ToString() == "PF")
{
strSql = "Select * from edms_product_mstr Where prd_id='" + Request.QueryString["id"] + "'";
da = new SqlDataAdapter(strSql, objHelp.dbCon);
da.Fill(ds);
dr = ds.Tables[0].Rows[0];
arrContent = (byte[])ds.Tables[0].Rows[0][9];
string conType = ds.Tables[0].Rows[0][13].ToString();
Response.ContentType = conType;
Response.OutputStream.Write(arrContent, 0, int.Parse(ds.Tables[0].Rows[0][11].ToString()));
Response.End();
}
}
it is possible,but now i want to display image from datalist using single aspx page
|
|
|
|
|
|
i have a iload control setup for uploading images ,how could i use that control in my application
|
|
|
|
|
you can start any exe as
Process.Start("path of exe");
Cheers!!
Brij
|
|
|
|
|
Brij wrote: you can start any exe as
Process.Start("path of exe");
I am sorry, but you are retarded.
|
|
|
|
|
Are you at right place to comment on anybody.It's always better to give suggestion not comment
Cheers!!
Brij
|
|
|
|