Hi everyone :) Is anybody can help me, I have a problem here , how to generate not repeated random integer values ? Thanx in advance
Regard, Edwin :)
Hi everyone :) Is anybody can help me, I have a problem here , how to generate not repeated random integer values ? Thanx in advance
Regard, Edwin :)
Sorry Guys, It's working 100%
Regard, Edwin :)
Thanx a lot -Bobo God Bless U
Regard, Edwin :)
Hi, How to bypass character in TextBox, so when we press alphabet keyboard key will bypass it. But when we press number TextBox will confirm this input. Thanx in advanced
Regard, Edwin :)
CMS (Content Management System). In ASP.NET 2.0 U will find it in ToolBox Web Part. Or other way U can Save every user settings in database. But I suggest U to use web parts. U can find it at msdn how to use it. Of course U can use xml.
Regard, Edwin :)
Ohh... I see. santoshkumarB, u should use CMS. Have U ever heard about CMS? This CMS will solve your problems.:)
Regard, Edwin :)
Hi santoshkumarB, So, what is your point? Please more specific.
Regard, Edwin :)
If u use SqlDataReader, then u can type this code :
<%
This is just example
SqlDataReader reader = cmd.ExecuteReader();
reader.Read();
string text = reader["YourColumn"].ToString();
%>
<% Response.Write(text); %>
Hope this will help U :-D -- modified at 5:04 Monday 6th August, 2007
Regard, Edwin :)
Maybe U should use this string path = Server.MapPath(@"~\Your_folder"); "@" means to escape backslash into string. And "~\" means that your files will upload into server folder. :)
Regard, Edwin
Woah, Thanx Cycnus, how do know about this coolest tool? This is great!!!
Regard, Edwin
Did U mean text editor ? U should use javascript to ceate that. www.fckeditor.net Hope this will help U
Regard, Edwin
SELECT DISTINCT your_column FROM bla... bla... bla...
I hope this will help U
Regard, Edwin
If U want user can edit their account interface, u should use cms. Of course it will save in database. Regard, Edwin
Hi, Usually I use Stored Procedure for paging. If U want paging without datagrid is okay, but if U dont want to use stored procedure then U should create a class for paging. It means for easy maintenance.:) Regard, Edwin
- In your solution explorer try to right click and choose add new item - Then If u use VS 2005 Master Page item will exist. Create menu bars in that masterpage. Then U add new Item Webform and fill the choose masterpage's checkbox. U will see your menu bar in webform that U just created :-D Regard, Edwin
Tomi means that you should create MasterPage.master not .aspx. If you create link in MasterPage.master, it will shown in all your webpage. Regard, Edwin
Hi Rashid, U should try ASP.NET Configuration. I believe U will get your answer there. Regard, Edwin
TomiEdy wrote:
if u use query: SELECT * FROM Your_Table Where age < 50 u got an output data age below 50, if u want to show the data where age is more than 50 than u must change your query into : SELECT * FROM Your_Table WHERE age > 50
I think U right Tomi, maybe U must check your query Rahul Regard, Edwin
SqlDataAdapter adapter = new SqlDataAdapter(yourQuery, conn);
DataSet ds = new DataSet();
DataTable dt = new DataTable("tablename");
adapter.Fill(dt);
ds.Tables.Add(dt);
ds.WriteXml("C:\text.xml");
Then On your crystal report Database Fields: change your dataset with "text.xml" If U have finish it, then create a dataset with your query, then change the code like this:
SqlDataAdapter adapter = new SqlDataAdapter(yourQuery, conn);
DataSet ds = new DataSet("YourDataSet");
DataTable dt = new DataTable("tablename");
adapter.Fill(dt);
ds.Tables.Add(dt);
ReportDocument rd = new ReportDocument();
rd.SetDataSource = ds;
crystalReportViewer1.ReportSource = rd;
Regard, Edwin
Maybe U must check your trigger query again..., because ic on your code there is no problem. Or U can goto msdn forum. Regard, Edwin