Dears In PHP there are a lot of content management systems ex: EZpublish and now I’m looking for free , tested and trusted .NET content management system that can help me to implement ASP.NET 2.0 web site that contain dynamic contents ex: news also can integrate with visual studio 2005 and support AJAX Any suggestion and Advice please. Thanks
Naif_Prof
Posts
-
.NET Contenet Management System -
Help PleaseHi, insted of using text box for date user date picker control http://www.basicdatepicker.com/ thanks
-
Checkboxes in GridView [modified]Hi Sandeep Kumbhar you can create session variable to save user selection in each page and at pagian change upload user selection from session variable thanks
-
datepicker control in asp.netHI t.aransiola you can use this control http://www.basicdatepicker.com thanks
-
query string and any way to encrypt its valuesdears any help
-
query string and any way to encrypt its valuesDear Sandeep thanks for your responce but i have to change my code :sigh: and Encryption & decryption will impact the performance or not?:doh: actuly im looking some thing in IIS wihout Encryption & decryption or changing me code..... :wtf: thanks
-
query string and any way to encrypt its valuesDears I’m using query string to pass variable between pages but the value of this variables is readable in address bar of browser , is their any way to encrypt it without change my code i.e. some configuration in IIS or install third party program Thanks for cooperation and support
-
strongly typed dataset ....?Dears In ASP.NET 2 web application, Can I create strongly typed dataset (xyz) and then select some record based on query i.e. Select * from xyz where ID = 999 and job=IT same as normal database table query and then the out put will be bind to GridView and if I create this strongly typed dataset can I write code to be used by all users of application . I mean use it as temporary storage for transaction. thanks
-
Wizard Control Question...Yes i got it protected void Wizard1_NextButtonClick(object sender, WizardNavigationEventArgs e) { if(Wizard1.ActiveStepIndex == 0) { // validation logic if ( ...... ) { e.Cancel = true; } } } thakns
-
Wizard Control Question...Hi, in AciveStepChanged event i need to validate user data in Specific step ( by code not using validation controles ) if this validation is not passed the user getting stuck in that step and not move to next step unless validation pass How i keep user in Specific step if validation not pass? thanks
-
create new record (row ) in GridView @ RuntimeHi , to every one I have two GridView in One page , I need to copy record(row) from GridView1 to GridView2 when customer select that row My question how we can create new record (row ) in GridView2 and fill data at run time ? thank a lot
-
check Box List and SelectedValue prob.? [modified]Dears When Im using check Box List with 5 item andd when I user select 2 or 3 out of 5 item In database only first selected value inserted only ??? (+ this.DaysCheckBoxList.SelectedValue.ToString() + "')";) Any help -- modified at 2:43 Wednesday 15th November, 2006
-
I want to get updated values back from DetailsViewHi When I use DetailsView in VS2005 and set it in defultMode to insert and then when I need to get the new values so in the DetailsView_ItemUpdating event the following code alwayes give me null exception
String Field1Values; Field1Values = e.NewValues["xyz"].ToString();
Also I set set ConvertEmptyStringToNull="False" But still I get null exception !!! any one help me so I want to get updated values back from the DetailsView and then handle my updating manually. -- modified at 12:08 Friday 3rd November, 2006 -
template column in GridView !!??Dears Hi, Im using VS 2005 and Instead of using SELECT in GridView I need to use on of GridView column as link to anther page and pass values to second page I use template column but how I can pass parameter and specify the link I use the following but is not working
href ="~/xyz/page2.aspx?id=<%# DataBinder.Eval(Container.DataItem, "ID") %>">
thanks.... -
ORACLE SQL statement in C# !! ??Dear Akhilesh Yadav its not working by after a lot of time the correct syntax is SqlQry = "Select emp_name as \"employees Name\" , emp_Add as \"address\" , dept as \"department\" From test.emp_tab"; so we use \ to cancel meaning of “ in string thanks
-
ORACLE SQL statement in C# !! ??Dears I need to write the following ORACLE SQL statement in C# in page of ASP as string Select emp_name as “employees Name” , emp_Add as “address” , dept as “department” From test.emp_tab ; Im using as to rename the column name in datagrid Any one help me to write it by C# as string Notes we in oracle to rename column name we have to use “ ” same as in defining string in C# Thanks
-
Using Context Object Disadvantages !!?thanks Sanjeev, I understand from you the following: If we pass variable value from page 1 to page 2 by using context.item and server.transfer We can get the variable value in page 2 only so we can not get it in page 3 or page 4 But if we use session we can get it during the session in any page but it will consume the RAM and professional programmer don’t prefer to use the session thanks again
-
Passing variables between pages using QueryStringOK, im using context.item["x"] and server.transfer("test.aspx",true) but it will effect RAM and application Performance? And is there any disadvantages? And as I know the professional programmer don’t prefer to use session ! thanks a lot
-
Using Context Object Disadvantages !!?hi what is thr Disadvantages of using Using Context Object to pass parameter between pages? the folowing is example //page1.aspx.cs this.Context.Items["x"] = TextBox1.Text; Server.Transfer("page2.aspx", true); //page2.aspx.cs TextBox1.Text = this.Context.Items["x"].ToString();
-
Passing variables between pages using QueryStringHI i'm using VS 2005 and i need to use QueryString to pass variables between paged but its visible is there any why to Encrypt this variable value in URL address bar thanks a lot